Compare commits
174 Commits
v3.5.13-sr
...
master
@ -1,6 +0,0 @@
|
|||||||
[submodule "admin"]
|
|
||||||
path = admin
|
|
||||||
url = http://system@scm.trinitydesktop.org/scm/git/tde-common-admin
|
|
||||||
[submodule "cmake"]
|
|
||||||
path = cmake
|
|
||||||
url = http://system@scm.trinitydesktop.org/scm/git/tde-common-cmake
|
|
@ -0,0 +1,26 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2018 Slávek Banko
|
||||||
|
# slavek.banko (AT) axis.cz
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
|
||||||
|
##### set project version ########################
|
||||||
|
|
||||||
|
include( TDEVersion )
|
||||||
|
cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} )
|
||||||
|
|
||||||
|
|
||||||
|
##### include our cmake modules #################
|
||||||
|
|
||||||
|
include( TDEL10n )
|
||||||
|
|
||||||
|
|
||||||
|
##### create translation templates ##############
|
||||||
|
|
||||||
|
tde_l10n_auto_add_subdirectories( )
|
@ -0,0 +1,87 @@
|
|||||||
|
############################################
|
||||||
|
# #
|
||||||
|
# Improvements and feedbacks are welcome #
|
||||||
|
# #
|
||||||
|
# This file is released under GPL >= 3 #
|
||||||
|
# #
|
||||||
|
############################################
|
||||||
|
|
||||||
|
|
||||||
|
##### set project version ########################
|
||||||
|
|
||||||
|
include( TDEVersion )
|
||||||
|
cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} )
|
||||||
|
tde_set_project_version( )
|
||||||
|
|
||||||
|
|
||||||
|
#### general package setup
|
||||||
|
|
||||||
|
project( kdbg )
|
||||||
|
|
||||||
|
|
||||||
|
#### include essential cmake modules
|
||||||
|
|
||||||
|
include( FindPkgConfig )
|
||||||
|
include( CheckFunctionExists )
|
||||||
|
include( CheckSymbolExists )
|
||||||
|
include( CheckIncludeFile )
|
||||||
|
include( CheckLibraryExists )
|
||||||
|
include( CheckCSourceCompiles )
|
||||||
|
include( CheckCXXSourceCompiles )
|
||||||
|
|
||||||
|
|
||||||
|
#### include our cmake modules
|
||||||
|
|
||||||
|
include( TDEMacros )
|
||||||
|
|
||||||
|
|
||||||
|
##### setup install paths
|
||||||
|
|
||||||
|
include( TDESetupPaths )
|
||||||
|
tde_setup_paths( )
|
||||||
|
|
||||||
|
|
||||||
|
##### optional stuff
|
||||||
|
|
||||||
|
option( WITH_ALL_OPTIONS "Enable all optional support" OFF )
|
||||||
|
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
|
||||||
|
option( WITH_TRACE_OUTPUT "Generate lots of trace output" OFF )
|
||||||
|
option( WITH_GDB_TRANSCRIPT "Provide file log" OFF )
|
||||||
|
|
||||||
|
|
||||||
|
##### user requested modules
|
||||||
|
|
||||||
|
option( BUILD_ALL "Build all" ON )
|
||||||
|
option( BUILD_DOC "Build documentation" ${BUILD_ALL} )
|
||||||
|
option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} )
|
||||||
|
option( BUILD_TESTPROGS "Build testprogs executables" OFF )
|
||||||
|
|
||||||
|
|
||||||
|
##### configure checks
|
||||||
|
|
||||||
|
include( ConfigureChecks.cmake )
|
||||||
|
|
||||||
|
|
||||||
|
###### global compiler settings
|
||||||
|
|
||||||
|
add_definitions( -DHAVE_CONFIG_H )
|
||||||
|
|
||||||
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
|
||||||
|
set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" )
|
||||||
|
set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" )
|
||||||
|
|
||||||
|
|
||||||
|
##### directories
|
||||||
|
|
||||||
|
add_subdirectory( ${PROJECT_NAME} )
|
||||||
|
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
tde_conditional_add_project_docs( BUILD_DOC )
|
||||||
|
tde_conditional_add_project_translations( BUILD_TRANSLATIONS )
|
||||||
|
|
||||||
|
|
||||||
|
##### write configure files
|
||||||
|
|
||||||
|
configure_file( config.h.cmake config.h @ONLY )
|
@ -0,0 +1,60 @@
|
|||||||
|
###########################################
|
||||||
|
# #
|
||||||
|
# Improvements and feedback are welcome #
|
||||||
|
# #
|
||||||
|
# This file is released under GPL >= 3 #
|
||||||
|
# #
|
||||||
|
###########################################
|
||||||
|
|
||||||
|
# required stuff
|
||||||
|
find_package( TQt )
|
||||||
|
find_package( TDE )
|
||||||
|
|
||||||
|
tde_setup_architecture_flags( )
|
||||||
|
|
||||||
|
include(TestBigEndian)
|
||||||
|
test_big_endian(WORDS_BIGENDIAN)
|
||||||
|
|
||||||
|
tde_setup_largefiles( )
|
||||||
|
|
||||||
|
|
||||||
|
##### check for gcc visibility support
|
||||||
|
|
||||||
|
if( WITH_GCC_VISIBILITY )
|
||||||
|
tde_setup_gcc_visibility( )
|
||||||
|
endif( WITH_GCC_VISIBILITY )
|
||||||
|
|
||||||
|
|
||||||
|
##### Trace outputs
|
||||||
|
|
||||||
|
if( WITH_TRACE_OUTPUT )
|
||||||
|
set( WANT_TRACE_OUTPUT 1 )
|
||||||
|
endif( WITH_TRACE_OUTPUT )
|
||||||
|
|
||||||
|
|
||||||
|
##### gdb-transcript
|
||||||
|
|
||||||
|
if( WITH_GDB_TRANSCRIPT )
|
||||||
|
set( GDB_TRANSCRIPT "./gdb-transcript" CACHE STRING "user specified file")
|
||||||
|
endif( WITH_GDB_TRANSCRIPT )
|
||||||
|
|
||||||
|
|
||||||
|
##### check for headers
|
||||||
|
|
||||||
|
check_include_file( "fcntl.h" HAVE_FCNTL_H )
|
||||||
|
check_include_file( "unistd.h" HAVE_UNISTD_H )
|
||||||
|
check_include_file( "sys/ioctl.h" HAVE_SYS_IOCTL_H )
|
||||||
|
check_include_file( "sys/stat.h" HAVE_SYS_STAT_H )
|
||||||
|
check_include_file( "pty.h" HAVE_PTY_H )
|
||||||
|
check_include_file( "libutil.h" HAVE_LIBUTIL_H )
|
||||||
|
check_include_file( "util.h" HAVE_UTIL_H )
|
||||||
|
|
||||||
|
|
||||||
|
##### search for 'ps' command
|
||||||
|
|
||||||
|
find_program( PS_COMMAND "ps" DOC "Path for the ps command" )
|
||||||
|
|
||||||
|
|
||||||
|
##### check for mkfifo function
|
||||||
|
|
||||||
|
check_function_exists( mkfifo HAVE_MKFIFO )
|
@ -0,0 +1,16 @@
|
|||||||
|
Basic Installation
|
||||||
|
==================
|
||||||
|
|
||||||
|
kdbg relies on cmake to build.
|
||||||
|
|
||||||
|
Here are suggested default options:
|
||||||
|
|
||||||
|
-DCMAKE_INSTALL_PREFIX="/opt/trinity" \
|
||||||
|
-DCONFIG_INSTALL_DIR="/etc/trinity" \
|
||||||
|
-DSYSCONF_INSTALL_DIR="/etc/trinity" \
|
||||||
|
-DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \
|
||||||
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||||
|
-DCMAKE_VERBOSE_MAKEFILE="ON" \
|
||||||
|
-DCMAKE_SKIP_RPATH="OFF" \
|
||||||
|
-DBUILD_ALL="ON" \
|
||||||
|
-DWITH_ALL_OPTIONS="ON"
|
@ -1,29 +0,0 @@
|
|||||||
SUBDIRS = kdbg po
|
|
||||||
|
|
||||||
# not a GNU package. You can remove this line, if
|
|
||||||
# have all needed files, that a GNU package needs
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
|
||||||
|
|
||||||
EXTRA_DIST = BUGS ChangeLog-pre-2.2.0 COPYING TODO admin \
|
|
||||||
ReleaseNotes-2.2.0 \
|
|
||||||
ReleaseNotes-2.2.1 \
|
|
||||||
ReleaseNotes-2.2.2
|
|
||||||
|
|
||||||
$(top_srcdir)/configure.in: configure.in.in $(top_srcdir)/subdirs
|
|
||||||
cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.in ;
|
|
||||||
|
|
||||||
$(top_srcdir)/subdirs:
|
|
||||||
cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common subdirs
|
|
||||||
|
|
||||||
$(top_srcdir)/acinclude.m4: $(top_srcdir)/admin/acinclude.m4.in $(top_srcdir)/admin/libtool.m4.in
|
|
||||||
@cd $(top_srcdir) && cat admin/acinclude.m4.in admin/libtool.m4.in > acinclude.m4
|
|
||||||
|
|
||||||
MAINTAINERCLEANFILES = subdirs configure.in acinclude.m4 configure.files
|
|
||||||
|
|
||||||
package-messages:
|
|
||||||
$(MAKE) -f admin/Makefile.common package-messages
|
|
||||||
$(MAKE) -C po merge
|
|
||||||
|
|
||||||
dist-hook:
|
|
||||||
cd $(top_distdir) && perl admin/am_edit -padmin
|
|
||||||
cd $(top_distdir) && $(MAKE) -f admin/Makefile.common subdirs
|
|
@ -1,19 +0,0 @@
|
|||||||
This is KDbg, a graphical user interface around gdb using
|
|
||||||
KDE, the K Desktop Environment.
|
|
||||||
|
|
||||||
To install:
|
|
||||||
|
|
||||||
./configure
|
|
||||||
make
|
|
||||||
make install
|
|
||||||
|
|
||||||
Problem reports as well as success stories are welcome!
|
|
||||||
|
|
||||||
The homepage is at
|
|
||||||
|
|
||||||
http://www.kdbg.org/
|
|
||||||
|
|
||||||
You'll find the most recent version of KDbg there as well as
|
|
||||||
other useful information concerning debugging.
|
|
||||||
|
|
||||||
Johannes Sixt <j6t@kdbg.org>
|
|
@ -1,881 +0,0 @@
|
|||||||
# generated automatically by aclocal 1.10.1 -*- Autoconf -*-
|
|
||||||
|
|
||||||
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
|
||||||
# 2005, 2006, 2007, 2008 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_AUTOCONF_VERSION],
|
|
||||||
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
|
||||||
m4_if(AC_AUTOCONF_VERSION, [2.63],,
|
|
||||||
[m4_warning([this file was generated for autoconf 2.63.
|
|
||||||
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, 2003, 2005, 2006, 2007 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.10'
|
|
||||||
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.10.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 AC_INIT_AUTOMAKE.
|
|
||||||
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
|
|
||||||
[AM_AUTOMAKE_VERSION([1.10.1])dnl
|
|
||||||
m4_ifndef([AC_AUTOCONF_VERSION],
|
|
||||||
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
|
||||||
_AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)])
|
|
||||||
|
|
||||||
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
|
|
||||||
|
|
||||||
# Copyright (C) 2001, 2003, 2005 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, 2000, 2001, 2003, 2004, 2005, 2006
|
|
||||||
# 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.
|
|
||||||
|
|
||||||
# serial 8
|
|
||||||
|
|
||||||
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
|
|
||||||
# -------------------------------------
|
|
||||||
# Define a conditional.
|
|
||||||
AC_DEFUN([AM_CONDITIONAL],
|
|
||||||
[AC_PREREQ(2.52)dnl
|
|
||||||
ifelse([$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
|
|
||||||
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, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
|
||||||
# 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.
|
|
||||||
|
|
||||||
# serial 9
|
|
||||||
|
|
||||||
# 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", "GCJ", or "OBJC".
|
|
||||||
# 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
|
|
||||||
|
|
||||||
ifelse([$1], CC, [depcc="$CC" am_compiler_list=],
|
|
||||||
[$1], CXX, [depcc="$CXX" am_compiler_list=],
|
|
||||||
[$1], OBJC, [depcc="$OBJC" 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'.
|
|
||||||
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
|
|
||||||
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 8's {/usr,}/bin/sh.
|
|
||||||
touch sub/conftst$i.h
|
|
||||||
done
|
|
||||||
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
|
|
||||||
|
|
||||||
case $depmode in
|
|
||||||
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
|
|
||||||
;;
|
|
||||||
none) break ;;
|
|
||||||
esac
|
|
||||||
# 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.
|
|
||||||
if depmode=$depmode \
|
|
||||||
source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
|
|
||||||
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
|
|
||||||
$SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} 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 sub/conftest.${OBJEXT-o} 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,
|
|
||||||
[ --disable-dependency-tracking speeds up one-time build
|
|
||||||
--enable-dependency-tracking do not reject slow dependency extractors])
|
|
||||||
if test "x$enable_dependency_tracking" != xno; then
|
|
||||||
am_depcomp="$ac_aux_dir/depcomp"
|
|
||||||
AMDEPBACKSLASH='\'
|
|
||||||
fi
|
|
||||||
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
|
||||||
AC_SUBST([AMDEPBACKSLASH])dnl
|
|
||||||
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
|
|
||||||
])
|
|
||||||
|
|
||||||
# Generate code to set up dependency tracking. -*- Autoconf -*-
|
|
||||||
|
|
||||||
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
|
|
||||||
# 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.
|
|
||||||
|
|
||||||
#serial 3
|
|
||||||
|
|
||||||
# _AM_OUTPUT_DEPENDENCY_COMMANDS
|
|
||||||
# ------------------------------
|
|
||||||
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
|
|
||||||
[for mf in $CONFIG_FILES; 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"`
|
|
||||||
# When using ansi2knr, U may be empty or an underscore; expand it
|
|
||||||
U=`sed -n 's/^U = //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' -e 's/\$U/'"$U"'/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"])
|
|
||||||
])
|
|
||||||
|
|
||||||
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
|
|
||||||
# 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.
|
|
||||||
|
|
||||||
# serial 8
|
|
||||||
|
|
||||||
# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS.
|
|
||||||
AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
|
|
||||||
|
|
||||||
# Do all the work for Automake. -*- Autoconf -*-
|
|
||||||
|
|
||||||
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
|
||||||
# 2005, 2006, 2008 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.
|
|
||||||
|
|
||||||
# serial 13
|
|
||||||
|
|
||||||
# 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.
|
|
||||||
|
|
||||||
# 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.60])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],
|
|
||||||
[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], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
|
|
||||||
[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)
|
|
||||||
AM_PROG_INSTALL_SH
|
|
||||||
AM_PROG_INSTALL_STRIP
|
|
||||||
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
|
|
||||||
# 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)],
|
|
||||||
[define([AC_PROG_CC],
|
|
||||||
defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
|
|
||||||
AC_PROVIDE_IFELSE([AC_PROG_CXX],
|
|
||||||
[_AM_DEPENDENCIES(CXX)],
|
|
||||||
[define([AC_PROG_CXX],
|
|
||||||
defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
|
|
||||||
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
|
|
||||||
[_AM_DEPENDENCIES(OBJC)],
|
|
||||||
[define([AC_PROG_OBJC],
|
|
||||||
defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
|
|
||||||
])
|
|
||||||
])
|
|
||||||
|
|
||||||
|
|
||||||
# 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, 2003, 2005 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
|
|
||||||
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
|
|
||||||
AC_SUBST(install_sh)])
|
|
||||||
|
|
||||||
# Copyright (C) 2003, 2005 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.
|
|
||||||
|
|
||||||
# serial 2
|
|
||||||
|
|
||||||
# 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, 2002, 2003, 2005 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.
|
|
||||||
|
|
||||||
# serial 3
|
|
||||||
|
|
||||||
# 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 done
|
|
||||||
.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
|
|
||||||
# We grep out `Entering directory' and `Leaving directory'
|
|
||||||
# messages which can occur if `w' ends up in MAKEFLAGS.
|
|
||||||
# In particular we don't look at `^make:' because GNU make might
|
|
||||||
# be invoked under some other name (usually "gmake"), in which
|
|
||||||
# case it prints its new name instead of `make'.
|
|
||||||
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
|
|
||||||
am__include=include
|
|
||||||
am__quote=
|
|
||||||
_am_result=GNU
|
|
||||||
fi
|
|
||||||
# Now try BSD make style include.
|
|
||||||
if test "$am__include" = "#"; then
|
|
||||||
echo '.include "confinc"' > confmf
|
|
||||||
if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
|
|
||||||
am__include=.include
|
|
||||||
am__quote="\""
|
|
||||||
_am_result=BSD
|
|
||||||
fi
|
|
||||||
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, 1999, 2000, 2001, 2003, 2004, 2005
|
|
||||||
# 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.
|
|
||||||
|
|
||||||
# serial 5
|
|
||||||
|
|
||||||
# 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 supports --run.
|
|
||||||
# If it does, 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
|
|
||||||
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
|
|
||||||
# Use eval to expand $SHELL
|
|
||||||
if eval "$MISSING --run true"; then
|
|
||||||
am_missing_run="$MISSING --run "
|
|
||||||
else
|
|
||||||
am_missing_run=
|
|
||||||
AC_MSG_WARN([`missing' script is too old or missing])
|
|
||||||
fi
|
|
||||||
])
|
|
||||||
|
|
||||||
# Copyright (C) 2003, 2004, 2005, 2006 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_MKDIR_P
|
|
||||||
# ---------------
|
|
||||||
# Check for `mkdir -p'.
|
|
||||||
AC_DEFUN([AM_PROG_MKDIR_P],
|
|
||||||
[AC_PREREQ([2.60])dnl
|
|
||||||
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
|
|
||||||
dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
|
|
||||||
dnl while keeping a definition of mkdir_p for backward compatibility.
|
|
||||||
dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
|
|
||||||
dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
|
|
||||||
dnl Makefile.ins that do not define MKDIR_P, so we do our own
|
|
||||||
dnl adjustment using top_builddir (which is defined more often than
|
|
||||||
dnl MKDIR_P).
|
|
||||||
AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
|
|
||||||
case $mkdir_p in
|
|
||||||
[[\\/$]]* | ?:[[\\/]]*) ;;
|
|
||||||
*/*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
|
|
||||||
esac
|
|
||||||
])
|
|
||||||
|
|
||||||
# Helper functions for option handling. -*- Autoconf -*-
|
|
||||||
|
|
||||||
# Copyright (C) 2001, 2002, 2003, 2005 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.
|
|
||||||
|
|
||||||
# serial 3
|
|
||||||
|
|
||||||
# _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],
|
|
||||||
[AC_FOREACH([_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])])
|
|
||||||
|
|
||||||
# Check to make sure that the build environment is sane. -*- Autoconf -*-
|
|
||||||
|
|
||||||
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
|
|
||||||
# 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.
|
|
||||||
|
|
||||||
# serial 4
|
|
||||||
|
|
||||||
# AM_SANITY_CHECK
|
|
||||||
# ---------------
|
|
||||||
AC_DEFUN([AM_SANITY_CHECK],
|
|
||||||
[AC_MSG_CHECKING([whether build environment is sane])
|
|
||||||
# Just in case
|
|
||||||
sleep 1
|
|
||||||
echo timestamp > conftest.file
|
|
||||||
# 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 (
|
|
||||||
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
|
|
||||||
rm -f conftest.file
|
|
||||||
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
|
|
||||||
|
|
||||||
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)])
|
|
||||||
|
|
||||||
# Copyright (C) 2001, 2003, 2005 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 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])
|
|
||||||
|
|
||||||
# Check how to create a tarball. -*- Autoconf -*-
|
|
||||||
|
|
||||||
# Copyright (C) 2004, 2005 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.
|
|
||||||
|
|
||||||
# serial 2
|
|
||||||
|
|
||||||
# _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.
|
|
||||||
AM_MISSING_PROG([AMTAR], [tar])
|
|
||||||
m4_if([$1], [v7],
|
|
||||||
[am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
|
|
||||||
[m4_case([$1], [ustar],, [pax],,
|
|
||||||
[m4_fatal([Unknown tar format])])
|
|
||||||
AC_MSG_CHECKING([how to create a $1 tar archive])
|
|
||||||
# Loop over all known methods to create a tar archive until one works.
|
|
||||||
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
|
|
||||||
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
|
|
||||||
# Do not fold the above two line into one, because Tru64 sh and
|
|
||||||
# Solaris sh will not grok spaces in the rhs of `-'.
|
|
||||||
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 <conftest.tar])
|
|
||||||
grep GrepMe conftest.dir/file >/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
|
|
||||||
|
|
||||||
m4_include([acinclude.m4])
|
|
@ -1 +0,0 @@
|
|||||||
Subproject commit 6613b274c8ca9832e5a73e0e01f155ee3bac2070
|
|
@ -1 +0,0 @@
|
|||||||
Subproject commit 9773bff74aa09637c11dc0ca65ad4cf18f308fe8
|
|
@ -0,0 +1,45 @@
|
|||||||
|
#define VERSION "@VERSION@"
|
||||||
|
|
||||||
|
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
|
||||||
|
#cmakedefine __TDE_HAVE_GCC_VISIBILITY 1
|
||||||
|
|
||||||
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||||
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||||
|
#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@
|
||||||
|
|
||||||
|
|
||||||
|
/* Defined if you build with trace outputs */
|
||||||
|
#cmakedefine WANT_TRACE_OUTPUT @WANT_TRACE_OUTPUT@
|
||||||
|
|
||||||
|
/* Define the GDB_TRANCRIPT log file */
|
||||||
|
#cmakedefine GDB_TRANSCRIPT "@GDB_TRANSCRIPT@"
|
||||||
|
|
||||||
|
|
||||||
|
/* Defined if you have the <fcntl.h> header */
|
||||||
|
#cmakedefine HAVE_FCNTL_H 1
|
||||||
|
|
||||||
|
/* Defined if you have the <unistd.h> header */
|
||||||
|
#cmakedefine HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Defined if you have the <sys/ioctl.h> header */
|
||||||
|
#cmakedefine HAVE_SYS_IOCTL_H 1
|
||||||
|
|
||||||
|
/* Defined if you have the <sys/stat.h> header */
|
||||||
|
#cmakedefine HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
/* Defined if you have the <pty.h> header */
|
||||||
|
#cmakedefine HAVE_PTY_H 1
|
||||||
|
|
||||||
|
/* Defined if you have the <libutil.h> header */
|
||||||
|
#cmakedefine HAVE_LIBUTIL_H 1
|
||||||
|
|
||||||
|
/* Defined if you have the <util.h> header */
|
||||||
|
#cmakedefine HAVE_UTIL_H 1
|
||||||
|
|
||||||
|
|
||||||
|
/* Define the ps command with its defaults arguments */
|
||||||
|
#cmakedefine PS_COMMAND "@PS_COMMAND@", "-eo", "pid,ppid,uid,vsz,etime,time,args"
|
||||||
|
|
||||||
|
|
||||||
|
/* Defined if you have the "mkfifo" function */
|
||||||
|
#cmakedefine HAVE_MKFIFO 1
|
@ -1,310 +0,0 @@
|
|||||||
/* config.h.in. Generated from configure.in by autoheader. */
|
|
||||||
|
|
||||||
/* Define to the name of the file that communication with gdb should be logged
|
|
||||||
to; undefine it for no logging */
|
|
||||||
#undef GDB_TRANSCRIPT
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <Carbon/Carbon.h> header file. */
|
|
||||||
#undef HAVE_CARBON_CARBON_H
|
|
||||||
|
|
||||||
/* Define if you have the CoreAudio API */
|
|
||||||
#undef HAVE_COREAUDIO
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <crt_externs.h> header file. */
|
|
||||||
#undef HAVE_CRT_EXTERNS_H
|
|
||||||
|
|
||||||
/* Defines if your system has the crypt function */
|
|
||||||
#undef HAVE_CRYPT
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
|
|
||||||
*/
|
|
||||||
#undef HAVE_DIRENT_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
||||||
#undef HAVE_DLFCN_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <fcntl.h> header file. */
|
|
||||||
#undef HAVE_FCNTL_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <fnmatch.h> header file. */
|
|
||||||
#undef HAVE_FNMATCH_H
|
|
||||||
|
|
||||||
/* Define if you have openpty */
|
|
||||||
#undef HAVE_FUNC_OPENPTY
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
||||||
#undef HAVE_INTTYPES_H
|
|
||||||
|
|
||||||
/* Define if you have libjpeg */
|
|
||||||
#undef HAVE_LIBJPEG
|
|
||||||
|
|
||||||
/* Define if you have libpng */
|
|
||||||
#undef HAVE_LIBPNG
|
|
||||||
|
|
||||||
/* Define if you have a working libpthread (will enable threaded code) */
|
|
||||||
#undef HAVE_LIBPTHREAD
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <libutil.h> header file. */
|
|
||||||
#undef HAVE_LIBUTIL_H
|
|
||||||
|
|
||||||
/* Define if you have libz */
|
|
||||||
#undef HAVE_LIBZ
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <memory.h> header file. */
|
|
||||||
#undef HAVE_MEMORY_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `mkfifo' function. */
|
|
||||||
#undef HAVE_MKFIFO
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
|
|
||||||
#undef HAVE_NDIR_H
|
|
||||||
|
|
||||||
/* Define if your system needs _NSGetEnviron to set up the environment */
|
|
||||||
#undef HAVE_NSGETENVIRON
|
|
||||||
|
|
||||||
/* Define if placement new works */
|
|
||||||
#undef HAVE_PLACEMENT_NEW
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <pty.h> header file. */
|
|
||||||
#undef HAVE_PTY_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `putenv' function. */
|
|
||||||
#undef HAVE_PUTENV
|
|
||||||
|
|
||||||
/* Define if you have res_init */
|
|
||||||
#undef HAVE_RES_INIT
|
|
||||||
|
|
||||||
/* Define if you have the res_init prototype */
|
|
||||||
#undef HAVE_RES_INIT_PROTO
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `setpgid' function. */
|
|
||||||
#undef HAVE_SETPGID
|
|
||||||
|
|
||||||
/* Define if you have a STL implementation by SGI */
|
|
||||||
#undef HAVE_SGI_STL
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `snprintf' function. */
|
|
||||||
#undef HAVE_SNPRINTF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `socket' function. */
|
|
||||||
#undef HAVE_SOCKET
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
|
||||||
#undef HAVE_STDINT_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
||||||
#undef HAVE_STDLIB_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <strings.h> header file. */
|
|
||||||
#undef HAVE_STRINGS_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <string.h> header file. */
|
|
||||||
#undef HAVE_STRING_H
|
|
||||||
|
|
||||||
/* Define if you have strlcat */
|
|
||||||
#undef HAVE_STRLCAT
|
|
||||||
|
|
||||||
/* Define if you have the strlcat prototype */
|
|
||||||
#undef HAVE_STRLCAT_PROTO
|
|
||||||
|
|
||||||
/* Define if you have strlcpy */
|
|
||||||
#undef HAVE_STRLCPY
|
|
||||||
|
|
||||||
/* Define if you have the strlcpy prototype */
|
|
||||||
#undef HAVE_STRLCPY_PROTO
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sysent.h> header file. */
|
|
||||||
#undef HAVE_SYSENT_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/bitypes.h> header file. */
|
|
||||||
#undef HAVE_SYS_BITYPES_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/cdefs.h> header file. */
|
|
||||||
#undef HAVE_SYS_CDEFS_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
|
|
||||||
*/
|
|
||||||
#undef HAVE_SYS_DIR_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/ioctl.h> header file. */
|
|
||||||
#undef HAVE_SYS_IOCTL_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
|
|
||||||
*/
|
|
||||||
#undef HAVE_SYS_NDIR_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
||||||
#undef HAVE_SYS_STAT_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/time.h> header file. */
|
|
||||||
#undef HAVE_SYS_TIME_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
||||||
#undef HAVE_SYS_TYPES_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
|
||||||
#undef HAVE_UNISTD_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <util.h> header file. */
|
|
||||||
#undef HAVE_UTIL_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `vsnprintf' function. */
|
|
||||||
#undef HAVE_VSNPRINTF
|
|
||||||
|
|
||||||
/* Suffix for lib directories */
|
|
||||||
#undef KDELIBSUFF
|
|
||||||
|
|
||||||
/* 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 version of this package. */
|
|
||||||
#undef PACKAGE_VERSION
|
|
||||||
|
|
||||||
/* Define how to invoke ps */
|
|
||||||
#undef PS_COMMAND
|
|
||||||
|
|
||||||
/* The size of `char *', as computed by sizeof. */
|
|
||||||
#undef SIZEOF_CHAR_P
|
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
|
||||||
#undef SIZEOF_INT
|
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
|
||||||
#undef SIZEOF_LONG
|
|
||||||
|
|
||||||
/* The size of `short', as computed by sizeof. */
|
|
||||||
#undef SIZEOF_SHORT
|
|
||||||
|
|
||||||
/* The size of `size_t', as computed by sizeof. */
|
|
||||||
#undef SIZEOF_SIZE_T
|
|
||||||
|
|
||||||
/* The size of `unsigned long', as computed by sizeof. */
|
|
||||||
#undef SIZEOF_UNSIGNED_LONG
|
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
|
||||||
#undef STDC_HEADERS
|
|
||||||
|
|
||||||
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
|
|
||||||
#undef TIME_WITH_SYS_TIME
|
|
||||||
|
|
||||||
/* Version number of package */
|
|
||||||
#undef VERSION
|
|
||||||
|
|
||||||
/* Define if you want to see voluminous trace output */
|
|
||||||
#undef WANT_TRACE_OUTPUT
|
|
||||||
|
|
||||||
/* Defined if compiling without arts */
|
|
||||||
#undef WITHOUT_ARTS
|
|
||||||
|
|
||||||
/*
|
|
||||||
* jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system
|
|
||||||
* headers and I'm too lazy to write a configure test as long as only
|
|
||||||
* unixware is related
|
|
||||||
*/
|
|
||||||
#ifdef _UNIXWARE
|
|
||||||
#define HAVE_BOOLEAN
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* AIX defines FD_SET in terms of bzero, but fails to include <strings.h>
|
|
||||||
* that defines bzero.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#if defined(_AIX)
|
|
||||||
#include <strings.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if defined(HAVE_NSGETENVIRON) && defined(HAVE_CRT_EXTERNS_H)
|
|
||||||
# include <sys/time.h>
|
|
||||||
# include <crt_externs.h>
|
|
||||||
# define environ (*_NSGetEnviron())
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if !defined(HAVE_RES_INIT_PROTO)
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
int res_init(void);
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if !defined(HAVE_STRLCAT_PROTO)
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
unsigned long strlcat(char*, const char*, unsigned long);
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if !defined(HAVE_STRLCPY_PROTO)
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
unsigned long strlcpy(char*, const char*, unsigned long);
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* On HP-UX, the declaration of vsnprintf() is needed every time !
|
|
||||||
*/
|
|
||||||
|
|
||||||
#if !defined(HAVE_VSNPRINTF) || defined(hpux)
|
|
||||||
#if __STDC__
|
|
||||||
#include <stdarg.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#else
|
|
||||||
#include <varargs.h>
|
|
||||||
#endif
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
#endif
|
|
||||||
int vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
#endif
|
|
||||||
int snprintf(char *str, size_t n, char const *fmt, ...);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if defined(__SVR4) && !defined(__svr4__)
|
|
||||||
#define __svr4__ 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/* type to use in place of socklen_t if not defined */
|
|
||||||
#undef kde_socklen_t
|
|
||||||
|
|
||||||
/* type to use in place of socklen_t if not defined (deprecated, use
|
|
||||||
kde_socklen_t) */
|
|
||||||
#undef ksize_t
|
|
@ -1,3 +0,0 @@
|
|||||||
./admin/configure.in.min
|
|
||||||
configure.in.in
|
|
||||||
configure.in.mid
|
|
@ -1,241 +0,0 @@
|
|||||||
dnl =======================================================
|
|
||||||
dnl FILE: ./admin/configure.in.min
|
|
||||||
dnl =======================================================
|
|
||||||
|
|
||||||
dnl This file is part of the KDE libraries/packages
|
|
||||||
dnl Copyright (C) 2001 Stephan Kulow (coolo@kde.org)
|
|
||||||
|
|
||||||
dnl This file is free software; you can redistribute it and/or
|
|
||||||
dnl modify it under the terms of the GNU Library General Public
|
|
||||||
dnl License as published by the Free Software Foundation; either
|
|
||||||
dnl version 2 of the License, or (at your option) any later version.
|
|
||||||
|
|
||||||
dnl This library is distributed in the hope that it will be useful,
|
|
||||||
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
dnl Library General Public License for more details.
|
|
||||||
|
|
||||||
dnl You should have received a copy of the GNU Library General Public License
|
|
||||||
dnl along with this library; see the file COPYING.LIB. If not, write to
|
|
||||||
dnl the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
dnl Boston, MA 02110-1301, USA.
|
|
||||||
|
|
||||||
# Original Author was Kalle@kde.org
|
|
||||||
# I lifted it in some mater. (Stephan Kulow)
|
|
||||||
# I used much code from Janos Farkas
|
|
||||||
|
|
||||||
dnl Process this file with autoconf to produce a configure script.
|
|
||||||
|
|
||||||
AC_INIT(acinclude.m4) dnl a source file from your sub dir
|
|
||||||
|
|
||||||
dnl This is so we can use kde-common
|
|
||||||
AC_CONFIG_AUX_DIR(admin)
|
|
||||||
|
|
||||||
dnl This ksh/zsh feature conflicts with `cd blah ; pwd`
|
|
||||||
unset CDPATH
|
|
||||||
|
|
||||||
dnl Checking host/target/build systems, for make, install etc.
|
|
||||||
AC_CANONICAL_SYSTEM
|
|
||||||
dnl Perform program name transformation
|
|
||||||
AC_ARG_PROGRAM
|
|
||||||
|
|
||||||
dnl Automake doc recommends to do this only here. (Janos)
|
|
||||||
AM_INIT_AUTOMAKE(kdbg, 2.2.2) dnl searches for some needed programs
|
|
||||||
|
|
||||||
KDE_SET_PREFIX
|
|
||||||
|
|
||||||
dnl generate the config header
|
|
||||||
AM_CONFIG_HEADER(config.h) dnl at the distribution this done
|
|
||||||
|
|
||||||
dnl Checks for programs.
|
|
||||||
AC_CHECK_COMPILERS
|
|
||||||
AC_ENABLE_SHARED(yes)
|
|
||||||
AC_ENABLE_STATIC(no)
|
|
||||||
KDE_PROG_LIBTOOL
|
|
||||||
|
|
||||||
dnl for NLS support. Call them in this order!
|
|
||||||
dnl WITH_NLS is for the po files
|
|
||||||
AM_KDE_WITH_NLS
|
|
||||||
|
|
||||||
dnl KDE_USE_QT
|
|
||||||
AC_PATH_KDE
|
|
||||||
dnl =======================================================
|
|
||||||
dnl FILE: configure.in.in
|
|
||||||
dnl =======================================================
|
|
||||||
|
|
||||||
#MIN_CONFIG
|
|
||||||
|
|
||||||
dnl PACKAGE set before
|
|
||||||
|
|
||||||
KDE_CREATE_SUBDIRSLIST
|
|
||||||
AC_CONFIG_FILES([ Makefile ])
|
|
||||||
AC_CONFIG_FILES([ kdbg/Makefile ])
|
|
||||||
AC_CONFIG_FILES([ kdbg/doc/Makefile ])
|
|
||||||
AC_CONFIG_FILES([ kdbg/doc/de/Makefile ])
|
|
||||||
AC_CONFIG_FILES([ kdbg/doc/en/Makefile ])
|
|
||||||
AC_CONFIG_FILES([ kdbg/doc/ru/Makefile ])
|
|
||||||
AC_CONFIG_FILES([ kdbg/pics/Makefile ])
|
|
||||||
AC_CONFIG_FILES([ kdbg/testprogs/Makefile ])
|
|
||||||
AC_CONFIG_FILES([ kdbg/typetables/Makefile ])
|
|
||||||
AC_CONFIG_FILES([ po/Makefile ])
|
|
||||||
dnl Checks for header files.
|
|
||||||
AC_LANG_C dnl switch to C
|
|
||||||
AC_HEADER_DIRENT dnl check for dirent.h
|
|
||||||
AC_HEADER_STDC dnl check for other stdc headers. More traditional ;)
|
|
||||||
dnl check for some more header files. You can remove some of
|
|
||||||
dnl them, if you want to. But it doesn't hurt
|
|
||||||
AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h sys/cdefs.h)
|
|
||||||
AC_CHECK_HEADERS(fnmatch.h sysent.h strings.h sys/stat.h)
|
|
||||||
AC_CHECK_HEADERS(sys/ioctl.h pty.h libutil.h util.h)
|
|
||||||
|
|
||||||
dnl Checks for libraries.
|
|
||||||
AC_CHECK_LIB(socket, socket, [LIBSOCKET="-lsocket -lnsl"]) dnl for Solaris' X11
|
|
||||||
AC_SUBST(LIBSOCKET)
|
|
||||||
|
|
||||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
||||||
AC_HEADER_TIME
|
|
||||||
|
|
||||||
dnl Checks for library functions.
|
|
||||||
AC_CHECK_FUNCS(setpgid putenv socket vsnprintf mkfifo)
|
|
||||||
|
|
||||||
dnl pseudo tty support in glibc2
|
|
||||||
AC_SEARCH_LIBS(openpty, util,
|
|
||||||
AC_DEFINE_UNQUOTED(HAVE_FUNC_OPENPTY, 1, [Define if you have openpty]))
|
|
||||||
|
|
||||||
dnl Check whether we want much debugging output
|
|
||||||
AH_TEMPLATE([WANT_TRACE_OUTPUT],
|
|
||||||
[Define if you want to see voluminous trace output])
|
|
||||||
AC_MSG_CHECKING([whether kdbg should generate lots of trace output])
|
|
||||||
dnl Default is no trace output
|
|
||||||
AC_ARG_ENABLE(lots-a-trace,
|
|
||||||
[ --enable-lots-a-trace generate lots of trace output [default=no]],
|
|
||||||
WANT_TRACE_OUTPUT=$enableval, WANT_TRACE_OUTPUT=no)
|
|
||||||
AC_MSG_RESULT($WANT_TRACE_OUTPUT)
|
|
||||||
if test "x$WANT_TRACE_OUTPUT" = "xyes"; then
|
|
||||||
AC_DEFINE_UNQUOTED(WANT_TRACE_OUTPUT)
|
|
||||||
fi
|
|
||||||
|
|
||||||
dnl Check whether test programs should be compiled
|
|
||||||
dnl Default is not to compile them
|
|
||||||
AC_ARG_ENABLE(testprogs,
|
|
||||||
[ --enable-testprogs compile test programs [default=no]],
|
|
||||||
[buildtestprogs=$enableval],[buildtestprogs=no])
|
|
||||||
AM_CONDITIONAL(BUILDTESTPROGS,test "x$buildtestprogs" = "xyes")
|
|
||||||
dnl write a notice into the log
|
|
||||||
echo "build test programs: $buildtestprogs" >&5
|
|
||||||
|
|
||||||
dnl Check where the communication with gdb should be logged
|
|
||||||
AC_MSG_CHECKING([where communication with gdb should be logged])
|
|
||||||
dnl Default is ./gdb-transcript until kdbg is released
|
|
||||||
AC_ARG_WITH(transcript,
|
|
||||||
[ --with-transcript=file log communication with gdb [default=not logged]],
|
|
||||||
GDB_TRANSCRIPT=$withval, GDB_TRANSCRIPT=no)
|
|
||||||
if test "x$GDB_TRANSCRIPT" = "xyes"; then
|
|
||||||
GDB_TRANSCRIPT="./gdb-transcript"
|
|
||||||
fi
|
|
||||||
if test "x$GDB_TRANSCRIPT" = "xno"; then
|
|
||||||
GDB_TRANSCRIPT="not logged"
|
|
||||||
else
|
|
||||||
dnl add quotes
|
|
||||||
GDB_TRANSCRIPT=\"$GDB_TRANSCRIPT\"
|
|
||||||
AC_DEFINE_UNQUOTED(GDB_TRANSCRIPT, $GDB_TRANSCRIPT,
|
|
||||||
[Define to the name of the file that communication with gdb
|
|
||||||
should be logged to; undefine it for no logging])
|
|
||||||
fi
|
|
||||||
AC_MSG_RESULT($GDB_TRANSCRIPT)
|
|
||||||
|
|
||||||
dnl Check whether placement new works
|
|
||||||
AH_TEMPLATE([HAVE_PLACEMENT_NEW],[Define if placement new works])
|
|
||||||
AC_LANG_CPLUSPLUS
|
|
||||||
AC_MSG_CHECKING(whether placement new is available)
|
|
||||||
AC_CACHE_VAL(ac_cv_have_placement_new,
|
|
||||||
[
|
|
||||||
AC_TRY_COMPILE([
|
|
||||||
#include <new>
|
|
||||||
],
|
|
||||||
[
|
|
||||||
int ii;
|
|
||||||
new(&ii) int;
|
|
||||||
],
|
|
||||||
ac_cv_have_placement_new=yes,
|
|
||||||
ac_cv_have_placement_new=no)
|
|
||||||
])
|
|
||||||
AC_MSG_RESULT($ac_cv_have_placement_new)
|
|
||||||
if eval "test \"`echo `$ac_cv_have_placement_new\" = yes"; then
|
|
||||||
AC_DEFINE(HAVE_PLACEMENT_NEW)
|
|
||||||
fi
|
|
||||||
|
|
||||||
dnl -----------------
|
|
||||||
AC_PATH_PROG(PS_COMMAND, ps)
|
|
||||||
if test -n "$PS_COMMAND"; then
|
|
||||||
AC_MSG_CHECKING(for suitable ps invocation)
|
|
||||||
|
|
||||||
PS_COMMAND="$PS_COMMAND -eo pid,ppid,uid,vsz,etime,time,args"
|
|
||||||
if $PS_COMMAND > /dev/null 2>&1; then
|
|
||||||
# works in principle; check output: extract first line, but avoid 'head -1'
|
|
||||||
set x `$PS_COMMAND | (read firstline; echo "$firstline")`
|
|
||||||
if test "$*" = "x PID PPID UID VSZ ELAPSED TIME COMMAND"; then
|
|
||||||
: # fine
|
|
||||||
else
|
|
||||||
PS_COMMAND="" # not suitable
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
PS_COMMAND="" # not suitable
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test -n "$PS_COMMAND"; then
|
|
||||||
AC_MSG_RESULT($PS_COMMAND)
|
|
||||||
PS_COMMAND=\"`echo $PS_COMMAND | sed -e 's/ /", "/g'`\"
|
|
||||||
AC_DEFINE_UNQUOTED(PS_COMMAND, $PS_COMMAND,
|
|
||||||
[Define how to invoke ps])
|
|
||||||
else
|
|
||||||
AC_MSG_RESULT([not suitable])
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
AM_CONDITIONAL(HAVE_PS_COMMAND, test -n "$PS_COMMAND")
|
|
||||||
AC_OUTPUT
|
|
||||||
# Check if KDE_SET_PREFIX was called, and --prefix was passed to configure
|
|
||||||
if test -n "$kde_libs_prefix" -a -n "$given_prefix"; then
|
|
||||||
# And if so, warn when they don't match
|
|
||||||
if test "$kde_libs_prefix" != "$given_prefix"; then
|
|
||||||
# And if kde doesn't know about the prefix yet
|
|
||||||
echo ":"`kde-config --path exe`":" | grep ":$given_prefix/bin/:" 2>&1 >/dev/null
|
|
||||||
if test $? -ne 0; then
|
|
||||||
echo ""
|
|
||||||
echo "Warning: you chose to install this package in $given_prefix,"
|
|
||||||
echo "but KDE was found in $kde_libs_prefix."
|
|
||||||
echo "For this to work, you will need to tell KDE about the new prefix, by ensuring"
|
|
||||||
echo "that KDEDIRS contains it, e.g. export KDEDIRS=$given_prefix:$kde_libs_prefix"
|
|
||||||
echo "Then restart KDE."
|
|
||||||
echo ""
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test x$GXX = "xyes" -a x$kde_have_gcc_visibility = "xyes" -a x$kde_cv_val_qt_gcc_visibility_patched = "xno"; then
|
|
||||||
echo ""
|
|
||||||
echo "Your GCC supports symbol visibility, but the patch for Qt supporting visibility"
|
|
||||||
echo "was not included. Therefore, GCC symbol visibility support remains disabled."
|
|
||||||
echo ""
|
|
||||||
echo "For better performance, consider including the Qt visibility supporting patch"
|
|
||||||
echo "located at:"
|
|
||||||
echo ""
|
|
||||||
echo "http://bugs.kde.org/show_bug.cgi?id=109386"
|
|
||||||
echo ""
|
|
||||||
echo "and recompile all of Qt and KDE. Note, this is entirely optional and"
|
|
||||||
echo "everything will continue to work just fine without it."
|
|
||||||
echo ""
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test "$all_tests" = "bad"; then
|
|
||||||
if test ! "$cache_file" = "/dev/null"; then
|
|
||||||
echo ""
|
|
||||||
echo "Please remove the file $cache_file after changing your setup"
|
|
||||||
echo "so that configure will find the changes next time."
|
|
||||||
echo ""
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo ""
|
|
||||||
echo "Good - your configure finished. Start make now"
|
|
||||||
echo ""
|
|
||||||
fi
|
|
@ -1,4 +0,0 @@
|
|||||||
#MIN_CONFIG
|
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE(kdbg, 2.2.2)
|
|
||||||
|
|
@ -1,115 +0,0 @@
|
|||||||
dnl Checks for header files.
|
|
||||||
AC_LANG_C dnl switch to C
|
|
||||||
AC_HEADER_DIRENT dnl check for dirent.h
|
|
||||||
AC_HEADER_STDC dnl check for other stdc headers. More traditional ;)
|
|
||||||
dnl check for some more header files. You can remove some of
|
|
||||||
dnl them, if you want to. But it doesn't hurt
|
|
||||||
AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h sys/cdefs.h)
|
|
||||||
AC_CHECK_HEADERS(fnmatch.h sysent.h strings.h sys/stat.h)
|
|
||||||
AC_CHECK_HEADERS(sys/ioctl.h pty.h libutil.h util.h)
|
|
||||||
|
|
||||||
dnl Checks for libraries.
|
|
||||||
AC_CHECK_LIB(socket, socket, [LIBSOCKET="-lsocket -lnsl"]) dnl for Solaris' X11
|
|
||||||
AC_SUBST(LIBSOCKET)
|
|
||||||
|
|
||||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
||||||
AC_HEADER_TIME
|
|
||||||
|
|
||||||
dnl Checks for library functions.
|
|
||||||
AC_CHECK_FUNCS(setpgid putenv socket vsnprintf mkfifo)
|
|
||||||
|
|
||||||
dnl pseudo tty support in glibc2
|
|
||||||
AC_SEARCH_LIBS(openpty, util,
|
|
||||||
AC_DEFINE_UNQUOTED(HAVE_FUNC_OPENPTY, 1, [Define if you have openpty]))
|
|
||||||
|
|
||||||
dnl Check whether we want much debugging output
|
|
||||||
AH_TEMPLATE([WANT_TRACE_OUTPUT],
|
|
||||||
[Define if you want to see voluminous trace output])
|
|
||||||
AC_MSG_CHECKING([whether kdbg should generate lots of trace output])
|
|
||||||
dnl Default is no trace output
|
|
||||||
AC_ARG_ENABLE(lots-a-trace,
|
|
||||||
[ --enable-lots-a-trace generate lots of trace output [default=no]],
|
|
||||||
WANT_TRACE_OUTPUT=$enableval, WANT_TRACE_OUTPUT=no)
|
|
||||||
AC_MSG_RESULT($WANT_TRACE_OUTPUT)
|
|
||||||
if test "x$WANT_TRACE_OUTPUT" = "xyes"; then
|
|
||||||
AC_DEFINE_UNQUOTED(WANT_TRACE_OUTPUT)
|
|
||||||
fi
|
|
||||||
|
|
||||||
dnl Check whether test programs should be compiled
|
|
||||||
dnl Default is not to compile them
|
|
||||||
AC_ARG_ENABLE(testprogs,
|
|
||||||
[ --enable-testprogs compile test programs [default=no]],
|
|
||||||
[buildtestprogs=$enableval],[buildtestprogs=no])
|
|
||||||
AM_CONDITIONAL(BUILDTESTPROGS,test "x$buildtestprogs" = "xyes")
|
|
||||||
dnl write a notice into the log
|
|
||||||
echo "build test programs: $buildtestprogs" >&5
|
|
||||||
|
|
||||||
dnl Check where the communication with gdb should be logged
|
|
||||||
AC_MSG_CHECKING([where communication with gdb should be logged])
|
|
||||||
dnl Default is ./gdb-transcript until kdbg is released
|
|
||||||
AC_ARG_WITH(transcript,
|
|
||||||
[ --with-transcript=file log communication with gdb [default=not logged]],
|
|
||||||
GDB_TRANSCRIPT=$withval, GDB_TRANSCRIPT=no)
|
|
||||||
if test "x$GDB_TRANSCRIPT" = "xyes"; then
|
|
||||||
GDB_TRANSCRIPT="./gdb-transcript"
|
|
||||||
fi
|
|
||||||
if test "x$GDB_TRANSCRIPT" = "xno"; then
|
|
||||||
GDB_TRANSCRIPT="not logged"
|
|
||||||
else
|
|
||||||
dnl add quotes
|
|
||||||
GDB_TRANSCRIPT=\"$GDB_TRANSCRIPT\"
|
|
||||||
AC_DEFINE_UNQUOTED(GDB_TRANSCRIPT, $GDB_TRANSCRIPT,
|
|
||||||
[Define to the name of the file that communication with gdb
|
|
||||||
should be logged to; undefine it for no logging])
|
|
||||||
fi
|
|
||||||
AC_MSG_RESULT($GDB_TRANSCRIPT)
|
|
||||||
|
|
||||||
dnl Check whether placement new works
|
|
||||||
AH_TEMPLATE([HAVE_PLACEMENT_NEW],[Define if placement new works])
|
|
||||||
AC_LANG_CPLUSPLUS
|
|
||||||
AC_MSG_CHECKING(whether placement new is available)
|
|
||||||
AC_CACHE_VAL(ac_cv_have_placement_new,
|
|
||||||
[
|
|
||||||
AC_TRY_COMPILE([
|
|
||||||
#include <new>
|
|
||||||
],
|
|
||||||
[
|
|
||||||
int ii;
|
|
||||||
new(&ii) int;
|
|
||||||
],
|
|
||||||
ac_cv_have_placement_new=yes,
|
|
||||||
ac_cv_have_placement_new=no)
|
|
||||||
])
|
|
||||||
AC_MSG_RESULT($ac_cv_have_placement_new)
|
|
||||||
if eval "test \"`echo `$ac_cv_have_placement_new\" = yes"; then
|
|
||||||
AC_DEFINE(HAVE_PLACEMENT_NEW)
|
|
||||||
fi
|
|
||||||
|
|
||||||
dnl -----------------
|
|
||||||
AC_PATH_PROG(PS_COMMAND, ps)
|
|
||||||
if test -n "$PS_COMMAND"; then
|
|
||||||
AC_MSG_CHECKING(for suitable ps invocation)
|
|
||||||
|
|
||||||
PS_COMMAND="$PS_COMMAND -eo pid,ppid,uid,vsz,etime,time,args"
|
|
||||||
if $PS_COMMAND > /dev/null 2>&1; then
|
|
||||||
# works in principle; check output: extract first line, but avoid 'head -1'
|
|
||||||
set x `$PS_COMMAND | (read firstline; echo "$firstline")`
|
|
||||||
if test "$*" = "x PID PPID UID VSZ ELAPSED TIME COMMAND"; then
|
|
||||||
: # fine
|
|
||||||
else
|
|
||||||
PS_COMMAND="" # not suitable
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
PS_COMMAND="" # not suitable
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test -n "$PS_COMMAND"; then
|
|
||||||
AC_MSG_RESULT($PS_COMMAND)
|
|
||||||
PS_COMMAND=\"`echo $PS_COMMAND | sed -e 's/ /", "/g'`\"
|
|
||||||
AC_DEFINE_UNQUOTED(PS_COMMAND, $PS_COMMAND,
|
|
||||||
[Define how to invoke ps])
|
|
||||||
else
|
|
||||||
AC_MSG_RESULT([not suitable])
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
AM_CONDITIONAL(HAVE_PS_COMMAND, test -n "$PS_COMMAND")
|
|
@ -0,0 +1,92 @@
|
|||||||
|
.\" Hey, EMACS: -*- nroff -*-
|
||||||
|
.\" First parameter, NAME, should be all caps
|
||||||
|
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||||
|
.\" other parameters are allowed: see man(7), man(1)
|
||||||
|
.TH KDBG 1 "March 25, 2005"
|
||||||
|
.\" Please adjust this date whenever revising the manpage.
|
||||||
|
.\"
|
||||||
|
.\" Some roff macros, for reference:
|
||||||
|
.\" .nh disable hyphenation
|
||||||
|
.\" .hy enable hyphenation
|
||||||
|
.\" .ad l left justify
|
||||||
|
.\" .ad b justify to both left and right margins
|
||||||
|
.\" .nf disable filling
|
||||||
|
.\" .fi enable filling
|
||||||
|
.\" .br insert line break
|
||||||
|
.\" .sp <n> insert n+1 empty lines
|
||||||
|
.\" for manpage-specific macros, see man(7)
|
||||||
|
.SH NAME
|
||||||
|
kdbg \- a graphical debugger interface
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B kdbg
|
||||||
|
[ \fIgeneric-options\fP ]
|
||||||
|
[ \fB\-t\fP \fIfile\fP ] [ \fB\-r\fP \fIdevice\fP ]
|
||||||
|
[ \fB\-l\fP \fIlanguage\fP ] [ \fB\-p\fP \fIpid\fP ]
|
||||||
|
[ \fIprogram\fP ] [ \fIcore\fP ]
|
||||||
|
.SH DESCRIPTION
|
||||||
|
\fBKDbg\fP is a graphical user interface to \fBgdb\fP, the GNU debugger. It
|
||||||
|
provides an intuitive interface for setting breakpoints, inspecting
|
||||||
|
variables, stepping through code and much more. KDbg requires TDE but
|
||||||
|
you can of course debug any program.
|
||||||
|
.PP
|
||||||
|
KDbg can also debug XSLT (XML stylesheet translation) scripts by
|
||||||
|
interfacing with \fBxsldbg\fP. Debian users must install the \fIkxsldbg\fP
|
||||||
|
package to make use of this feature.
|
||||||
|
.PP
|
||||||
|
You can pass KDbg the path of the executable to debug (\fIprogram\fP) or
|
||||||
|
a core dump to debug (\fIcore\fP).
|
||||||
|
.PP
|
||||||
|
Features of KDbg include:
|
||||||
|
.PP
|
||||||
|
.RS
|
||||||
|
Inspection of variable values in a tree structure.
|
||||||
|
.PP
|
||||||
|
Direct member: For certain compound data types the most important
|
||||||
|
member values are displayed next to the variable name, so that it is
|
||||||
|
not necessary to expand the subtree of that variable in order to see
|
||||||
|
the member value. KDbg can also display TQt's TQString values, which
|
||||||
|
are Unicode strings.
|
||||||
|
.PP
|
||||||
|
Debugger at your finger tips: The basic debugger functions (step,
|
||||||
|
next, run, finish, until, set/clear/enable/disable breakpoint) are
|
||||||
|
bound to function keys F5 through F10. Quick and easy.
|
||||||
|
.PP
|
||||||
|
View source code, search text, set program arguments and environment
|
||||||
|
variables, display arbitrary expressions.
|
||||||
|
.PP
|
||||||
|
Debugging of core dumps, attaching to running processes is possible.
|
||||||
|
.PP
|
||||||
|
Conditional breakpoints.
|
||||||
|
.RE
|
||||||
|
.SH OPTIONS
|
||||||
|
Below are the kdbg-specific options.
|
||||||
|
For a full summary of options, run \fIkdbg \-\-help\fP.
|
||||||
|
.TP
|
||||||
|
\fB\-t\fP \fIfile\fP
|
||||||
|
Write a transcript of the conversation with the debugger to the given
|
||||||
|
file.
|
||||||
|
.TP
|
||||||
|
\fB\-r\fP \fIdevice\fP
|
||||||
|
Use remote debugging via the given device.
|
||||||
|
.TP
|
||||||
|
\fB\-l\fP \fIlanguage\fP
|
||||||
|
Specify the language of the program/script to debug.
|
||||||
|
This must be either \fIC\fP (for a C/C++ program) or
|
||||||
|
\fIXSL\fP (for an XSLT script).
|
||||||
|
If this option is not passed then KDbg will try to deduce the language
|
||||||
|
from the given filename.
|
||||||
|
.TP
|
||||||
|
\fB\-p\fP \fIpid\fP
|
||||||
|
Attach to the process with the given process ID.
|
||||||
|
.SH SEE ALSO
|
||||||
|
.BR gdb (1),
|
||||||
|
.BR xsldbg (1).
|
||||||
|
.PP
|
||||||
|
Full user documentation is available through the TDE Help Centre.
|
||||||
|
Alternatively the HTML documentation can be viewed directly from
|
||||||
|
\fI/opt/trinity/share/doc/tde/HTML/<lang>/kdbg/\fP.
|
||||||
|
.SH AUTHOR
|
||||||
|
KDbg was written by Johannes Sixt <Johannes.Sixt@telecom.at>.
|
||||||
|
.br
|
||||||
|
This manual page was prepared by Ben Burton <bab@debian.org>
|
||||||
|
for the Debian GNU/Linux system (but may be used by others).
|
@ -1,67 +0,0 @@
|
|||||||
%define name kdbg
|
|
||||||
%define version 2.0.0
|
|
||||||
%define release 1.kde2
|
|
||||||
%define prefix /usr
|
|
||||||
|
|
||||||
%define builddir $RPM_BUILD_DIR/%{name}-%{version}
|
|
||||||
|
|
||||||
Summary: KDbg - KDE Debugging GUI around gdb
|
|
||||||
Name: %{name}
|
|
||||||
Version: %{version}
|
|
||||||
Release: %{release}
|
|
||||||
Prefix: %{prefix}
|
|
||||||
Group: X11/KDE/Development
|
|
||||||
Copyright: GPL
|
|
||||||
Distribution: RedHat 7.0
|
|
||||||
Vendor: Johannes Sixt <j6t@kdbg.org>
|
|
||||||
Packager: Ullrich von Bassewitz <uz@musoftware.de>
|
|
||||||
Source: %{name}-%{version}.tar.gz
|
|
||||||
URL: http://www.kdbg.org/
|
|
||||||
Requires: kdelibs >= 2.0
|
|
||||||
BuildRoot: /tmp/build-%{name}-%{version}
|
|
||||||
|
|
||||||
%description
|
|
||||||
KDbg is a graphical user interface to gdb, the GNU debugger. It provides
|
|
||||||
an intuitive interface for setting breakpoints, inspecting variables, and
|
|
||||||
stepping through code.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
rm -rf %{builddir}
|
|
||||||
|
|
||||||
%setup
|
|
||||||
touch `find . -type f`
|
|
||||||
|
|
||||||
%build
|
|
||||||
if [ -z "$KDEDIR" ]; then
|
|
||||||
export KDEDIR=%{prefix}
|
|
||||||
fi
|
|
||||||
CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS="$RPM_OPT_FLAGS" ./configure \
|
|
||||||
--prefix=$KDEDIR
|
|
||||||
make
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
|
||||||
if [ -z "$KDEDIR" ]; then
|
|
||||||
export KDEDIR=%{prefix}
|
|
||||||
fi
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install-strip
|
|
||||||
|
|
||||||
cd $RPM_BUILD_ROOT
|
|
||||||
find . -type d | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' > \
|
|
||||||
$RPM_BUILD_DIR/file.list.%{name}
|
|
||||||
find . -type f | sed -e 's,^\.,\%attr(-\,root\,root) ,' \
|
|
||||||
-e '/\/config\//s|^|%config|' >> \
|
|
||||||
$RPM_BUILD_DIR/file.list.%{name}
|
|
||||||
find . -type l | sed 's,^\.,\%attr(-\,root\,root) ,' >> \
|
|
||||||
$RPM_BUILD_DIR/file.list.%{name}
|
|
||||||
echo "%docdir $KDEDIR/share/doc/HTML" >> $RPM_BUILD_DIR/file.list.%{name}
|
|
||||||
|
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
rm -rf %{builddir}
|
|
||||||
rm -f $RPM_BUILD_DIR/file.list.%{name}
|
|
||||||
|
|
||||||
%files -f ../file.list.%{name}
|
|
@ -0,0 +1,8 @@
|
|||||||
|
##### create translation templates ##############
|
||||||
|
|
||||||
|
tde_l10n_create_template( "messages/kdbg" )
|
||||||
|
|
||||||
|
tde_l10n_create_template(
|
||||||
|
CATALOG "desktop_files/kdbg.desktop/"
|
||||||
|
SOURCES kdbg.desktop
|
||||||
|
)
|
@ -0,0 +1,70 @@
|
|||||||
|
tde_conditional_add_subdirectory( BUILD_TESTPROGS testprogs )
|
||||||
|
|
||||||
|
add_subdirectory( typetables )
|
||||||
|
add_subdirectory( pics )
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### kdbg (executable)
|
||||||
|
|
||||||
|
tde_add_executable( ${PROJECT_NAME} AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
pgmargsbase.ui
|
||||||
|
procattachbase.ui
|
||||||
|
pgmargs.cpp
|
||||||
|
procattach.cpp
|
||||||
|
debugger.cpp
|
||||||
|
programconfig.cpp
|
||||||
|
dbgdriver.cpp
|
||||||
|
gdbdriver.cpp
|
||||||
|
xsldbgdriver.cpp
|
||||||
|
brkpt.cpp
|
||||||
|
exprwnd.cpp
|
||||||
|
regwnd.cpp
|
||||||
|
memwindow.cpp
|
||||||
|
threadlist.cpp
|
||||||
|
sourcewnd.cpp
|
||||||
|
winstack.cpp
|
||||||
|
ttywnd.cpp
|
||||||
|
typetable.cpp
|
||||||
|
prefdebugger.cpp
|
||||||
|
prefmisc.cpp
|
||||||
|
pgmsettings.cpp
|
||||||
|
mainwndbase.cpp
|
||||||
|
dbgmainwnd.cpp
|
||||||
|
main.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeio-shared
|
||||||
|
tdeui-shared
|
||||||
|
|
||||||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES kdbgui.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_create_translated_desktop( ${PROJECT_NAME}.desktop )
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES kdbgrc
|
||||||
|
DESTINATION ${CONFIG_INSTALL_DIR}
|
||||||
|
)
|
@ -1,98 +0,0 @@
|
|||||||
# set the include path for X, qt and KDE
|
|
||||||
INCLUDES= $(all_includes)
|
|
||||||
|
|
||||||
# claim, which subdirectories you want to install
|
|
||||||
SUBDIRS = doc pics typetables testprogs
|
|
||||||
|
|
||||||
####### This part is very kdbg specific
|
|
||||||
# you can add here more. This one gets installed
|
|
||||||
bin_PROGRAMS = kdbg
|
|
||||||
|
|
||||||
# Which sources should be compiled for kdbg.
|
|
||||||
kdbg_SOURCES = \
|
|
||||||
pgmargs.cpp \
|
|
||||||
pgmargsbase.ui \
|
|
||||||
procattach.cpp \
|
|
||||||
procattachbase.ui \
|
|
||||||
debugger.cpp \
|
|
||||||
programconfig.cpp \
|
|
||||||
dbgdriver.cpp \
|
|
||||||
gdbdriver.cpp \
|
|
||||||
xsldbgdriver.cpp \
|
|
||||||
brkpt.cpp \
|
|
||||||
exprwnd.cpp \
|
|
||||||
regwnd.cpp \
|
|
||||||
memwindow.cpp \
|
|
||||||
threadlist.cpp \
|
|
||||||
sourcewnd.cpp \
|
|
||||||
winstack.cpp \
|
|
||||||
ttywnd.cpp \
|
|
||||||
typetable.cpp \
|
|
||||||
prefdebugger.cpp \
|
|
||||||
prefmisc.cpp \
|
|
||||||
pgmsettings.cpp \
|
|
||||||
mainwndbase.cpp \
|
|
||||||
dbgmainwnd.cpp \
|
|
||||||
main.cpp
|
|
||||||
|
|
||||||
# the library search path
|
|
||||||
kdbg_LDFLAGS = \
|
|
||||||
$(all_libraries) $(KDE_RPATH)
|
|
||||||
|
|
||||||
# the libraries to link against.
|
|
||||||
kdbg_LDADD = $(LIB_KIO) $(LIB_KDEUI) $(LIB_KDECORE) $(LIB_QT)
|
|
||||||
|
|
||||||
# this option you can leave out. Just, if you use "make dist", you need it
|
|
||||||
noinst_HEADERS = \
|
|
||||||
pgmargs.h \
|
|
||||||
procattach.h \
|
|
||||||
debugger.h \
|
|
||||||
programconfig.h \
|
|
||||||
dbgdriver.h \
|
|
||||||
gdbdriver.h \
|
|
||||||
xsldbgdriver.h \
|
|
||||||
brkpt.h \
|
|
||||||
exprwnd.h \
|
|
||||||
regwnd.h \
|
|
||||||
memwindow.h \
|
|
||||||
threadlist.h \
|
|
||||||
sourcewnd.h \
|
|
||||||
winstack.h \
|
|
||||||
ttywnd.h \
|
|
||||||
typetable.h \
|
|
||||||
prefdebugger.h \
|
|
||||||
prefmisc.h \
|
|
||||||
pgmsettings.h \
|
|
||||||
mainwndbase.h \
|
|
||||||
dbgmainwnd.h \
|
|
||||||
envvar.h \
|
|
||||||
commandids.h \
|
|
||||||
mydebug.h
|
|
||||||
|
|
||||||
kdbg_METASOURCES = AUTO
|
|
||||||
|
|
||||||
# if you "make clean", this files get removed. If you want to remove
|
|
||||||
# them while "make distclean", use DISTCLEANFILES
|
|
||||||
CLEANFILES = $(kdbg_METASOURCES)
|
|
||||||
|
|
||||||
xdg_apps_DATA = kdbg.desktop
|
|
||||||
|
|
||||||
configdir = $(kde_confdir)
|
|
||||||
config_DATA = kdbgrc
|
|
||||||
|
|
||||||
rcdir = $(kde_datadir)/kdbg
|
|
||||||
rc_DATA = kdbgui.rc
|
|
||||||
|
|
||||||
# Make messages.po and move it to $(top_srcdir)/po. "make merge" there.
|
|
||||||
# the -x is for skipping messages already translated in kdelibs
|
|
||||||
# Messages are generated in the source directory so that file names
|
|
||||||
# mentioned in the .pot file are not prefixed by $(srcdir).
|
|
||||||
messages:
|
|
||||||
cd $(srcdir) && \
|
|
||||||
extractrc *.rc *.ui > rc.cpp && \
|
|
||||||
LIST=`find . -name \*.h -o -name \*.cpp -o -name \*.cc -o -name \*.cxx -o -name \*.C` && \
|
|
||||||
$(XGETTEXT) -C -ki18n -kI18N_NOOP -x $(includedir)/kde.pot \
|
|
||||||
$$LIST && mv messages.po $(top_srcdir)/po/kdbg.pot; \
|
|
||||||
rm -f rc.cpp
|
|
||||||
|
|
||||||
EXTRA_DIST = kdbg.desktop kdbgrc
|
|
@ -1,3 +0,0 @@
|
|||||||
|
|
||||||
# add here all the languages, you have docu for
|
|
||||||
SUBDIRS = de en ru
|
|
@ -1,27 +0,0 @@
|
|||||||
html_DATA = \
|
|
||||||
argspwdenv.html \
|
|
||||||
breakptlist.html \
|
|
||||||
globaloptions.html \
|
|
||||||
howdoi.html \
|
|
||||||
localvars.html \
|
|
||||||
memory.html \
|
|
||||||
pgmoutput.html \
|
|
||||||
pgmsettings.html \
|
|
||||||
registers.html \
|
|
||||||
sourcecode.html \
|
|
||||||
stack.html \
|
|
||||||
threads.html \
|
|
||||||
tips.html \
|
|
||||||
watches.html \
|
|
||||||
index.html
|
|
||||||
|
|
||||||
htmldir = $(kde_htmldir)/de/kdbg
|
|
||||||
|
|
||||||
EXTRA_DIST = $(html_DATA)
|
|
||||||
|
|
||||||
install-data-local:
|
|
||||||
$(mkinstalldirs) $(DESTDIR)$(htmldir)
|
|
||||||
cd $(DESTDIR)$(htmldir) && ln -s -f ../../en/kdbg/types.html .
|
|
||||||
|
|
||||||
uninstall-local:
|
|
||||||
-rm -f $(DESTDIR)$(htmldir)/types.html
|
|
@ -1,23 +0,0 @@
|
|||||||
html_DATA = \
|
|
||||||
argspwdenv.html \
|
|
||||||
breakptlist.html \
|
|
||||||
globaloptions.html \
|
|
||||||
howdoi.html \
|
|
||||||
invocation.html \
|
|
||||||
localvars.html \
|
|
||||||
memory.html \
|
|
||||||
pgmoutput.html \
|
|
||||||
pgmsettings.html \
|
|
||||||
registers.html \
|
|
||||||
sourcecode.html \
|
|
||||||
stack.html \
|
|
||||||
threads.html \
|
|
||||||
tips.html \
|
|
||||||
types.html \
|
|
||||||
watches.html \
|
|
||||||
xslt.html \
|
|
||||||
index.html
|
|
||||||
|
|
||||||
htmldir = $(kde_htmldir)/en/kdbg
|
|
||||||
|
|
||||||
EXTRA_DIST = $(html_DATA)
|
|
@ -1,27 +0,0 @@
|
|||||||
html_DATA = \
|
|
||||||
argspwdenv.html \
|
|
||||||
breakptlist.html \
|
|
||||||
globaloptions.html \
|
|
||||||
howdoi.html \
|
|
||||||
localvars.html \
|
|
||||||
memory.html \
|
|
||||||
pgmoutput.html \
|
|
||||||
pgmsettings.html \
|
|
||||||
registers.html \
|
|
||||||
sourcecode.html \
|
|
||||||
stack.html \
|
|
||||||
threads.html \
|
|
||||||
tips.html \
|
|
||||||
watches.html \
|
|
||||||
index.html
|
|
||||||
|
|
||||||
htmldir = $(kde_htmldir)/ru/kdbg
|
|
||||||
|
|
||||||
EXTRA_DIST = $(html_DATA)
|
|
||||||
|
|
||||||
install-data-local:
|
|
||||||
$(mkinstalldirs) $(DESTDIR)$(htmldir)
|
|
||||||
cd $(DESTDIR)$(htmldir) && ln -s -f ../../en/kdbg/types.html .
|
|
||||||
|
|
||||||
uninstall-local:
|
|
||||||
-rm -f $(DESTDIR)$(htmldir)/types.html
|
|
@ -1,42 +1,13 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Exec=kdbg -caption "%c" %i
|
|
||||||
Icon=kdbg
|
|
||||||
Type=Application
|
|
||||||
X-DocPath=kdbg/index.html
|
|
||||||
Name=KDbg
|
Name=KDbg
|
||||||
|
|
||||||
GenericName=Debugger
|
GenericName=Debugger
|
||||||
GenericName[br]=Dizraener
|
|
||||||
GenericName[da]=Afluser
|
|
||||||
GenericName[es]=Depurador
|
|
||||||
GenericName[fi]=Debuggeri
|
|
||||||
GenericName[fr]=Débogueur
|
|
||||||
GenericName[is]=Aflúsun
|
|
||||||
GenericName[no]=Avluser
|
|
||||||
GenericName[pt]=Depurador
|
|
||||||
GenericName[pt_BR]=Depurador
|
|
||||||
GenericName[ro]=Depanator
|
|
||||||
GenericName[ru]=Отладчик
|
|
||||||
GenericName[sk]=Ladiaci program
|
|
||||||
GenericName[sl]=Razhroščevalnik
|
|
||||||
GenericName[sv]=Avlusare
|
|
||||||
Comment=Debug programs
|
Comment=Debug programs
|
||||||
Comment[br]=Goulevioù dizraenañ
|
|
||||||
Comment[ca]=Programes per localització d'errors
|
Type=Application
|
||||||
Comment[cs]=Ladídí program
|
Exec=kdbg -caption "%c" %i
|
||||||
Comment[da]=Afluseprogrammer
|
Icon=kdbg
|
||||||
Comment[de]=Programme debuggen
|
Categories=Qt;TDE;Development;Debugger;
|
||||||
Comment[es]=Depurador de programas
|
|
||||||
Comment[fi]=Tutki ohjelmien toimintaa
|
|
||||||
Comment[fr]=Déboguer un programme
|
|
||||||
Comment[is]=kdbg: Forrit til ađ aflúsa önnur forrit
|
|
||||||
Comment[no]=Avluse programmer
|
|
||||||
Comment[pl]=Program do debugowania
|
|
||||||
Comment[pt]=Depurador de programas
|
|
||||||
Comment[pt_BR]=Depurador de programas
|
|
||||||
Comment[ro]=Depanator de programe
|
|
||||||
Comment[ru]=Отлаживает программы
|
|
||||||
Comment[sk]=Ladiaci program
|
|
||||||
Comment[sl]=Odpravljanje napak v programih
|
|
||||||
Comment[sv]=Avlusar program
|
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=Qt;KDE;Development;Debugger;
|
X-DocPath=kdbg/index.html
|
||||||
|
@ -1,237 +0,0 @@
|
|||||||
#include <kdialog.h>
|
|
||||||
#include <klocale.h>
|
|
||||||
/****************************************************************************
|
|
||||||
** Form implementation generated from reading ui file '../../exper/kdbg/pgmargsbase.ui'
|
|
||||||
**
|
|
||||||
** Created: Sun Jun 6 14:57:15 2010
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
#include "pgmargsbase.h"
|
|
||||||
|
|
||||||
#include <qvariant.h>
|
|
||||||
#include <qpushbutton.h>
|
|
||||||
#include <qtabwidget.h>
|
|
||||||
#include <qwidget.h>
|
|
||||||
#include <qlabel.h>
|
|
||||||
#include <qlineedit.h>
|
|
||||||
#include <qheader.h>
|
|
||||||
#include <qlistview.h>
|
|
||||||
#include <qlistbox.h>
|
|
||||||
#include <qlayout.h>
|
|
||||||
#include <qtooltip.h>
|
|
||||||
#include <qwhatsthis.h>
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Constructs a PgmArgsBase as a child of 'parent', with the
|
|
||||||
* name 'name' and widget flags set to 'f'.
|
|
||||||
*
|
|
||||||
* The dialog will by default be modeless, unless you set 'modal' to
|
|
||||||
* TRUE to construct a modal dialog.
|
|
||||||
*/
|
|
||||||
PgmArgsBase::PgmArgsBase( QWidget* parent, const char* name, bool modal, WFlags fl )
|
|
||||||
: QDialog( parent, name, modal, fl )
|
|
||||||
{
|
|
||||||
if ( !name )
|
|
||||||
setName( "PgmArgsBase" );
|
|
||||||
setSizeGripEnabled( TRUE );
|
|
||||||
PgmArgsBaseLayout = new QHBoxLayout( this, 11, 6, "PgmArgsBaseLayout");
|
|
||||||
|
|
||||||
layout1 = new QVBoxLayout( 0, 0, 6, "layout1");
|
|
||||||
|
|
||||||
tabWidget = new QTabWidget( this, "tabWidget" );
|
|
||||||
|
|
||||||
argsPage = new QWidget( tabWidget, "argsPage" );
|
|
||||||
argsPageLayout = new QHBoxLayout( argsPage, 11, 6, "argsPageLayout");
|
|
||||||
|
|
||||||
layout2 = new QVBoxLayout( 0, 0, 6, "layout2");
|
|
||||||
|
|
||||||
labelArgs = new QLabel( argsPage, "labelArgs" );
|
|
||||||
layout2->addWidget( labelArgs );
|
|
||||||
|
|
||||||
programArgs = new QLineEdit( argsPage, "programArgs" );
|
|
||||||
layout2->addWidget( programArgs );
|
|
||||||
|
|
||||||
layout3 = new QHBoxLayout( 0, 0, 6, "layout3");
|
|
||||||
|
|
||||||
insertFile = new QPushButton( argsPage, "insertFile" );
|
|
||||||
layout3->addWidget( insertFile );
|
|
||||||
|
|
||||||
insertDir = new QPushButton( argsPage, "insertDir" );
|
|
||||||
layout3->addWidget( insertDir );
|
|
||||||
spacer1 = new QSpacerItem( 61, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
|
|
||||||
layout3->addItem( spacer1 );
|
|
||||||
layout2->addLayout( layout3 );
|
|
||||||
spacer2 = new QSpacerItem( 81, 180, QSizePolicy::Minimum, QSizePolicy::Expanding );
|
|
||||||
layout2->addItem( spacer2 );
|
|
||||||
argsPageLayout->addLayout( layout2 );
|
|
||||||
tabWidget->insertTab( argsPage, QString::fromLatin1("") );
|
|
||||||
|
|
||||||
wdPage = new QWidget( tabWidget, "wdPage" );
|
|
||||||
wdPageLayout = new QHBoxLayout( wdPage, 11, 6, "wdPageLayout");
|
|
||||||
|
|
||||||
layout6 = new QVBoxLayout( 0, 0, 6, "layout6");
|
|
||||||
|
|
||||||
wdEdit = new QLineEdit( wdPage, "wdEdit" );
|
|
||||||
layout6->addWidget( wdEdit );
|
|
||||||
|
|
||||||
layout5 = new QHBoxLayout( 0, 0, 6, "layout5");
|
|
||||||
|
|
||||||
wdBrowse = new QPushButton( wdPage, "wdBrowse" );
|
|
||||||
layout5->addWidget( wdBrowse );
|
|
||||||
spacer4 = new QSpacerItem( 321, 31, QSizePolicy::Expanding, QSizePolicy::Minimum );
|
|
||||||
layout5->addItem( spacer4 );
|
|
||||||
layout6->addLayout( layout5 );
|
|
||||||
spacer5 = new QSpacerItem( 111, 161, QSizePolicy::Minimum, QSizePolicy::Expanding );
|
|
||||||
layout6->addItem( spacer5 );
|
|
||||||
wdPageLayout->addLayout( layout6 );
|
|
||||||
tabWidget->insertTab( wdPage, QString::fromLatin1("") );
|
|
||||||
|
|
||||||
envPage = new QWidget( tabWidget, "envPage" );
|
|
||||||
envPageLayout = new QHBoxLayout( envPage, 11, 6, "envPageLayout");
|
|
||||||
|
|
||||||
layout9 = new QHBoxLayout( 0, 0, 6, "layout9");
|
|
||||||
|
|
||||||
layout7 = new QVBoxLayout( 0, 0, 6, "layout7");
|
|
||||||
|
|
||||||
envLabel = new QLabel( envPage, "envLabel" );
|
|
||||||
layout7->addWidget( envLabel );
|
|
||||||
|
|
||||||
envVar = new QLineEdit( envPage, "envVar" );
|
|
||||||
layout7->addWidget( envVar );
|
|
||||||
|
|
||||||
envList = new QListView( envPage, "envList" );
|
|
||||||
envList->addColumn( tr2i18n( "Name" ) );
|
|
||||||
envList->header()->setClickEnabled( FALSE, envList->header()->count() - 1 );
|
|
||||||
envList->addColumn( tr2i18n( "Value" ) );
|
|
||||||
envList->header()->setClickEnabled( FALSE, envList->header()->count() - 1 );
|
|
||||||
envList->setSelectionMode( QListView::Single );
|
|
||||||
layout7->addWidget( envList );
|
|
||||||
layout9->addLayout( layout7 );
|
|
||||||
|
|
||||||
layout8 = new QVBoxLayout( 0, 0, 6, "layout8");
|
|
||||||
|
|
||||||
buttonModify = new QPushButton( envPage, "buttonModify" );
|
|
||||||
layout8->addWidget( buttonModify );
|
|
||||||
|
|
||||||
buttonDelete = new QPushButton( envPage, "buttonDelete" );
|
|
||||||
layout8->addWidget( buttonDelete );
|
|
||||||
spacer6 = new QSpacerItem( 51, 141, QSizePolicy::Minimum, QSizePolicy::Expanding );
|
|
||||||
layout8->addItem( spacer6 );
|
|
||||||
layout9->addLayout( layout8 );
|
|
||||||
envPageLayout->addLayout( layout9 );
|
|
||||||
tabWidget->insertTab( envPage, QString::fromLatin1("") );
|
|
||||||
|
|
||||||
xsldbgOptionsPage = new QWidget( tabWidget, "xsldbgOptionsPage" );
|
|
||||||
xsldbgOptionsPageLayout = new QHBoxLayout( xsldbgOptionsPage, 11, 6, "xsldbgOptionsPageLayout");
|
|
||||||
|
|
||||||
xsldbgOptions = new QListBox( xsldbgOptionsPage, "xsldbgOptions" );
|
|
||||||
xsldbgOptions->setSelectionMode( QListBox::Multi );
|
|
||||||
xsldbgOptionsPageLayout->addWidget( xsldbgOptions );
|
|
||||||
tabWidget->insertTab( xsldbgOptionsPage, QString::fromLatin1("") );
|
|
||||||
layout1->addWidget( tabWidget );
|
|
||||||
|
|
||||||
layout4 = new QHBoxLayout( 0, 0, 6, "layout4");
|
|
||||||
|
|
||||||
buttonHelp = new QPushButton( this, "buttonHelp" );
|
|
||||||
buttonHelp->setAutoDefault( TRUE );
|
|
||||||
layout4->addWidget( buttonHelp );
|
|
||||||
spacer3 = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
|
|
||||||
layout4->addItem( spacer3 );
|
|
||||||
|
|
||||||
buttonOk = new QPushButton( this, "buttonOk" );
|
|
||||||
buttonOk->setAutoDefault( TRUE );
|
|
||||||
buttonOk->setDefault( TRUE );
|
|
||||||
layout4->addWidget( buttonOk );
|
|
||||||
|
|
||||||
buttonCancel = new QPushButton( this, "buttonCancel" );
|
|
||||||
buttonCancel->setAutoDefault( TRUE );
|
|
||||||
layout4->addWidget( buttonCancel );
|
|
||||||
layout1->addLayout( layout4 );
|
|
||||||
PgmArgsBaseLayout->addLayout( layout1 );
|
|
||||||
languageChange();
|
|
||||||
resize( QSize(528, 410).expandedTo(minimumSizeHint()) );
|
|
||||||
clearWState( WState_Polished );
|
|
||||||
|
|
||||||
// signals and slots connections
|
|
||||||
connect( buttonOk, SIGNAL( clicked() ), this, SLOT( accept() ) );
|
|
||||||
connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( reject() ) );
|
|
||||||
connect( insertFile, SIGNAL( clicked() ), this, SLOT( browseArgFile() ) );
|
|
||||||
connect( wdBrowse, SIGNAL( clicked() ), this, SLOT( browseWd() ) );
|
|
||||||
connect( buttonModify, SIGNAL( clicked() ), this, SLOT( modifyVar() ) );
|
|
||||||
connect( buttonDelete, SIGNAL( clicked() ), this, SLOT( deleteVar() ) );
|
|
||||||
connect( envList, SIGNAL( selectionChanged() ), this, SLOT( envListCurrentChanged() ) );
|
|
||||||
connect( buttonHelp, SIGNAL( clicked() ), this, SLOT( invokeHelp() ) );
|
|
||||||
connect( insertDir, SIGNAL( clicked() ), this, SLOT( browseArgDir() ) );
|
|
||||||
|
|
||||||
// tab order
|
|
||||||
setTabOrder( envVar, envList );
|
|
||||||
setTabOrder( envList, buttonModify );
|
|
||||||
setTabOrder( buttonModify, buttonDelete );
|
|
||||||
setTabOrder( buttonDelete, programArgs );
|
|
||||||
setTabOrder( programArgs, insertFile );
|
|
||||||
setTabOrder( insertFile, insertDir );
|
|
||||||
setTabOrder( insertDir, buttonHelp );
|
|
||||||
setTabOrder( buttonHelp, buttonOk );
|
|
||||||
setTabOrder( buttonOk, buttonCancel );
|
|
||||||
setTabOrder( buttonCancel, tabWidget );
|
|
||||||
setTabOrder( tabWidget, wdEdit );
|
|
||||||
setTabOrder( wdEdit, wdBrowse );
|
|
||||||
|
|
||||||
// buddies
|
|
||||||
labelArgs->setBuddy( programArgs );
|
|
||||||
envLabel->setBuddy( envVar );
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Destroys the object and frees any allocated resources
|
|
||||||
*/
|
|
||||||
PgmArgsBase::~PgmArgsBase()
|
|
||||||
{
|
|
||||||
// no need to delete child widgets, Qt does it all for us
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Sets the strings of the subwidgets using the current
|
|
||||||
* language.
|
|
||||||
*/
|
|
||||||
void PgmArgsBase::languageChange()
|
|
||||||
{
|
|
||||||
setCaption( tr2i18n( "Program Arguments" ) );
|
|
||||||
labelArgs->setText( tr2i18n( "Run <i>%1</i> with these arguments:" ) );
|
|
||||||
QWhatsThis::add( programArgs, tr2i18n( "Specify the arguments with which the program shall be invoked for this debugging session. You specify the arguments just as you would on the command line, that is, you can even use quotes and environment variables, for example:<p><tt>--message 'start in: ' $HOME</tt>" ) );
|
|
||||||
insertFile->setText( tr2i18n( "Insert &file name..." ) );
|
|
||||||
insertFile->setAccel( QKeySequence( tr2i18n( "Alt+F" ) ) );
|
|
||||||
QWhatsThis::add( insertFile, tr2i18n( "Browse for a file; the full path name will be inserted at the current cursor location in the edit box above." ) );
|
|
||||||
insertDir->setText( tr2i18n( "Insert &directory name..." ) );
|
|
||||||
insertDir->setAccel( QKeySequence( tr2i18n( "Alt+D" ) ) );
|
|
||||||
QWhatsThis::add( insertDir, tr2i18n( "Browse for a directory; the full path name will be inserted at the current cursor location in the edit box above." ) );
|
|
||||||
tabWidget->changeTab( argsPage, tr2i18n( "&Arguments" ) );
|
|
||||||
QWhatsThis::add( wdEdit, tr2i18n( "Specify here the initial working directory where the program is run." ) );
|
|
||||||
wdBrowse->setText( tr2i18n( "&Browse..." ) );
|
|
||||||
wdBrowse->setAccel( QKeySequence( tr2i18n( "Alt+B" ) ) );
|
|
||||||
QWhatsThis::add( wdBrowse, tr2i18n( "Browse for the initial working directory where the program is run." ) );
|
|
||||||
tabWidget->changeTab( wdPage, tr2i18n( "&Working Directory" ) );
|
|
||||||
envLabel->setText( tr2i18n( "Environment variables (<tt>NAME=value</tt>):" ) );
|
|
||||||
QWhatsThis::add( envVar, tr2i18n( "To add a new environment variable or to modify one, specify it here in the form <tt>NAME=value</tt> and click <b>Modify</b>." ) );
|
|
||||||
envList->header()->setLabel( 0, tr2i18n( "Name" ) );
|
|
||||||
envList->header()->setLabel( 1, tr2i18n( "Value" ) );
|
|
||||||
QWhatsThis::add( envList, tr2i18n( "Environment variables that are set <i>in addition</i> to those that are inherited are listed in this table. To add new environment variables, specify them as <tt>NAME=value</tt> in the edit box above and click <b>Modify</b>. To modify a value, select it in this list and click <b>Modify</b>. To delete an environment variable, select it in this list and click <b>Delete</b>." ) );
|
|
||||||
buttonModify->setText( tr2i18n( "&Modify" ) );
|
|
||||||
buttonModify->setAccel( QKeySequence( tr2i18n( "Alt+M" ) ) );
|
|
||||||
QWhatsThis::add( buttonModify, tr2i18n( "Enters the environment variable that is currently specified in the edit box into the list. If the named variable is already in the list, it receives a new value; otherwise, a new entry is created." ) );
|
|
||||||
buttonDelete->setText( tr2i18n( "&Delete" ) );
|
|
||||||
buttonDelete->setAccel( QKeySequence( tr2i18n( "Alt+D" ) ) );
|
|
||||||
QWhatsThis::add( buttonDelete, tr2i18n( "Deletes the selected environment variable from the list. This cannot be used to delete environment variables that are inherited." ) );
|
|
||||||
tabWidget->changeTab( envPage, tr2i18n( "&Environment" ) );
|
|
||||||
tabWidget->changeTab( xsldbgOptionsPage, tr2i18n( "&xsldbg Options" ) );
|
|
||||||
buttonHelp->setText( tr2i18n( "&Help" ) );
|
|
||||||
buttonHelp->setAccel( QKeySequence( tr2i18n( "F1" ) ) );
|
|
||||||
buttonOk->setText( tr2i18n( "&OK" ) );
|
|
||||||
buttonOk->setAccel( QKeySequence( QString::null ) );
|
|
||||||
buttonCancel->setText( tr2i18n( "&Cancel" ) );
|
|
||||||
buttonCancel->setAccel( QKeySequence( QString::null ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "pgmargsbase.moc"
|
|
@ -0,0 +1,20 @@
|
|||||||
|
##### app icons
|
||||||
|
|
||||||
|
tde_install_icons( ${PROJECT_NAME} )
|
||||||
|
|
||||||
|
|
||||||
|
##### pixmap icons
|
||||||
|
|
||||||
|
file( GLOB xpm_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.xpm )
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES ${xpm_files}
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/pics
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### action icons
|
||||||
|
|
||||||
|
tde_install_icons( "action-*"
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/icons
|
||||||
|
)
|
@ -1,56 +0,0 @@
|
|||||||
# toolbar icons
|
|
||||||
|
|
||||||
kdbgiconsdir = $(kde_datadir)/kdbg/icons
|
|
||||||
kdbgicons_ICON = \
|
|
||||||
pulse \
|
|
||||||
brkpt \
|
|
||||||
pgmfinish \
|
|
||||||
pgmnext \
|
|
||||||
pgmnexti \
|
|
||||||
pgmrun \
|
|
||||||
pgmstep \
|
|
||||||
pgmstepi \
|
|
||||||
execopen
|
|
||||||
|
|
||||||
# line items and other pictograms
|
|
||||||
PICTOGRAMS = \
|
|
||||||
brkena.xpm \
|
|
||||||
brkdis.xpm \
|
|
||||||
brktmp.xpm \
|
|
||||||
brkcond.xpm \
|
|
||||||
brkorph.xpm \
|
|
||||||
pcinner.xpm \
|
|
||||||
pcup.xpm \
|
|
||||||
regs.xpm \
|
|
||||||
watch.xpm \
|
|
||||||
watchcoded.xpm \
|
|
||||||
watchena.xpm \
|
|
||||||
watchdis.xpm \
|
|
||||||
pointer.xpm
|
|
||||||
|
|
||||||
|
|
||||||
pics_DATA = $(PICTOGRAMS)
|
|
||||||
picsdir = $(kde_datadir)/kdbg/pics
|
|
||||||
|
|
||||||
# application icon
|
|
||||||
KDE_ICON = kdbg
|
|
||||||
|
|
||||||
animation = $(shell cd "$(srcdir)" && echo hi22-action-pulse0000*.png)
|
|
||||||
|
|
||||||
# this requires ImageMagick
|
|
||||||
hi22-action-pulse.png: hi22-action-pulse.pngseq
|
|
||||||
list="$(animation)" ; \
|
|
||||||
montage +frame +shadow +label -background black \
|
|
||||||
-geometry 22x22 \
|
|
||||||
-tile 1x`echo $$list | wc -w` \
|
|
||||||
$$list hi22-action-pulse.png
|
|
||||||
|
|
||||||
hi22-action-pulse.pngseq: hi22-action-pulse.xml
|
|
||||||
@echo "Using cinelerra render $< into a PNG sequence $@"
|
|
||||||
@echo "If you do not have cinelerra, just touch $@"
|
|
||||||
exit 1
|
|
||||||
|
|
||||||
# This file can be rendered by cinelerra into a "PNG sequence".
|
|
||||||
# This produces the PNG sequence $(animation), which is pasted together
|
|
||||||
# by `make hi22-action-pulse.png'.
|
|
||||||
EXTRA_DIST = hi22-action-pulse.xml $(animation)
|
|
Before Width: | Height: | Size: 389 B After Width: | Height: | Size: 294 B |
Before Width: | Height: | Size: 684 B After Width: | Height: | Size: 678 B |
Before Width: | Height: | Size: 441 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 482 B After Width: | Height: | Size: 389 B |
Before Width: | Height: | Size: 491 B After Width: | Height: | Size: 393 B |
Before Width: | Height: | Size: 477 B After Width: | Height: | Size: 455 B |
Before Width: | Height: | Size: 433 B After Width: | Height: | Size: 340 B |
Before Width: | Height: | Size: 443 B After Width: | Height: | Size: 345 B |
Before Width: | Height: | Size: 454 B After Width: | Height: | Size: 368 B |
Before Width: | Height: | Size: 298 B After Width: | Height: | Size: 243 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 381 B After Width: | Height: | Size: 271 B |
Before Width: | Height: | Size: 359 B After Width: | Height: | Size: 285 B |
Before Width: | Height: | Size: 383 B After Width: | Height: | Size: 300 B |
Before Width: | Height: | Size: 636 B After Width: | Height: | Size: 588 B |
Before Width: | Height: | Size: 367 B After Width: | Height: | Size: 265 B |
Before Width: | Height: | Size: 390 B After Width: | Height: | Size: 280 B |
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 507 B |
Before Width: | Height: | Size: 508 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 508 B |
Before Width: | Height: | Size: 511 B |
Before Width: | Height: | Size: 513 B |
Before Width: | Height: | Size: 512 B |
Before Width: | Height: | Size: 520 B |
Before Width: | Height: | Size: 519 B |
Before Width: | Height: | Size: 527 B |
Before Width: | Height: | Size: 521 B |
Before Width: | Height: | Size: 521 B |
Before Width: | Height: | Size: 551 B |
Before Width: | Height: | Size: 549 B |
Before Width: | Height: | Size: 536 B |
Before Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 543 B |
Before Width: | Height: | Size: 533 B |
Before Width: | Height: | Size: 529 B |
Before Width: | Height: | Size: 523 B |
Before Width: | Height: | Size: 517 B |
Before Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 529 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 517 B |
Before Width: | Height: | Size: 518 B |
Before Width: | Height: | Size: 512 B |
Before Width: | Height: | Size: 506 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 899 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,122 @@
|
|||||||
|
/* XPM */
|
||||||
|
static char *kdbg[] = {
|
||||||
|
/* columns rows colors chars-per-pixel */
|
||||||
|
"32 32 84 1",
|
||||||
|
" c black",
|
||||||
|
". c #0C0D16",
|
||||||
|
"X c #10111D",
|
||||||
|
"o c #11111E",
|
||||||
|
"O c #151526",
|
||||||
|
"+ c #17182A",
|
||||||
|
"@ c #191A26",
|
||||||
|
"# c #18182C",
|
||||||
|
"$ c #1D1E33",
|
||||||
|
"% c #1E1C36",
|
||||||
|
"& c #22233D",
|
||||||
|
"* c #21243B",
|
||||||
|
"= c #23253C",
|
||||||
|
"- c #23253D",
|
||||||
|
"; c #272A3C",
|
||||||
|
": c #313928",
|
||||||
|
"> c #333A29",
|
||||||
|
", c #262843",
|
||||||
|
"< c #2A2B42",
|
||||||
|
"1 c #2A2C43",
|
||||||
|
"2 c #2A2D47",
|
||||||
|
"3 c #292B48",
|
||||||
|
"4 c #292B4C",
|
||||||
|
"5 c #2B2F4A",
|
||||||
|
"6 c #2B2F4B",
|
||||||
|
"7 c #2A2C4E",
|
||||||
|
"8 c #2C2F4D",
|
||||||
|
"9 c #2B2F50",
|
||||||
|
"0 c #2D2F57",
|
||||||
|
"q c #2E3153",
|
||||||
|
"w c #2E3154",
|
||||||
|
"e c #2E3254",
|
||||||
|
"r c #2E3256",
|
||||||
|
"t c #2F3256",
|
||||||
|
"y c #2E3059",
|
||||||
|
"u c #303359",
|
||||||
|
"i c #30345A",
|
||||||
|
"p c #31355C",
|
||||||
|
"a c #31355D",
|
||||||
|
"s c #313761",
|
||||||
|
"d c #353464",
|
||||||
|
"f c #323864",
|
||||||
|
"g c #343A6A",
|
||||||
|
"h c #353A6C",
|
||||||
|
"j c #363B6F",
|
||||||
|
"k c #363C70",
|
||||||
|
"l c #383E75",
|
||||||
|
"z c #3A3D75",
|
||||||
|
"x c #383F7A",
|
||||||
|
"c c #393F7C",
|
||||||
|
"v c #225025",
|
||||||
|
"b c #225425",
|
||||||
|
"n c #235926",
|
||||||
|
"m c #236828",
|
||||||
|
"M c #236F29",
|
||||||
|
"N c #247E2A",
|
||||||
|
"B c #3A4180",
|
||||||
|
"V c #3B4282",
|
||||||
|
"C c #3C4181",
|
||||||
|
"Z c #3E4181",
|
||||||
|
"A c #3C4385",
|
||||||
|
"S c #3D4488",
|
||||||
|
"D c #3E4589",
|
||||||
|
"F c #3E468D",
|
||||||
|
"G c #3F4793",
|
||||||
|
"H c #404790",
|
||||||
|
"J c #404894",
|
||||||
|
"K c #434C9E",
|
||||||
|
"L c #444DA1",
|
||||||
|
"P c #454DA4",
|
||||||
|
"I c #454EA6",
|
||||||
|
"U c #4751AE",
|
||||||
|
"Y c #4954B6",
|
||||||
|
"T c #4A55B8",
|
||||||
|
"R c #4B56BC",
|
||||||
|
"E c #4E5AC6",
|
||||||
|
"W c #4F5BCB",
|
||||||
|
"Q c #525FD5",
|
||||||
|
"! c #5462DD",
|
||||||
|
"~ c #5A69EF",
|
||||||
|
"^ c #24882B",
|
||||||
|
"/ c #25A32E",
|
||||||
|
"( c #CE0000",
|
||||||
|
") c None",
|
||||||
|
/* pixels */
|
||||||
|
"))))))))))))))))))))))))))))))))",
|
||||||
|
"))))))))))))))))))))))))))))))))",
|
||||||
|
"))))))))))))))))))))))))))))))))",
|
||||||
|
"))))))))))))))))))))))))))))))))",
|
||||||
|
"))))))))))) )))) )))))))))))",
|
||||||
|
")))()))))) vbv )) vbv ))))))()))",
|
||||||
|
"))))()))) nmMmn nmMmn ))))())))",
|
||||||
|
")))))())) mN^NmvvmN^Nm )))()))))",
|
||||||
|
"))))))()) M^/((((((/^M ))())))))",
|
||||||
|
")))))))() m((O4it,X((m )()))))))",
|
||||||
|
"))))))))( (>7kkkgfa*>( ())))))))",
|
||||||
|
")))) )))( ycBBBclhs- ())) ))))",
|
||||||
|
"))) ()(AFG((((xhs()( )))",
|
||||||
|
") )))( C(K(PPKG(c(t ())) )",
|
||||||
|
") )))))()%JL(YTYULJ(lfo)())))) )",
|
||||||
|
"))))))())dK(R(WERU(F(g&))())))))",
|
||||||
|
"))))))())C(YEQ(QE(PGB(q))())))))",
|
||||||
|
")))) ( )H(TW!~!WTPJB(y) ( ))))",
|
||||||
|
"))) )( H(YEQ!QEYPGB(a () )))",
|
||||||
|
")) ))())F(URE(ER(LFc(t))()) ))",
|
||||||
|
") )))())lH(U(TTUL(A(f3))())) )",
|
||||||
|
") )))))()0DJ(PPPKGD(ga$)())))) )",
|
||||||
|
")))))))( #c(F(JJFA(k(q. ()))))))",
|
||||||
|
"))))) ()(lcB((((hst()( )))))",
|
||||||
|
")))) )))(+sgkkhgfaq2.())) ))))",
|
||||||
|
")))) )))()(-iaaaiq81@()())) ))))",
|
||||||
|
")))) ))()))((55521;(()))()) ))))",
|
||||||
|
"))) )())))) (((((( )))))() )))",
|
||||||
|
"))) )()))))))) ))))))))() )))",
|
||||||
|
")) ())))))))))))))))))))))( ))",
|
||||||
|
")) ())))))))))))))))))))))))( ))",
|
||||||
|
"))))))))))))))))))))))))))))))))"
|
||||||
|
};
|
Before Width: | Height: | Size: 434 B After Width: | Height: | Size: 390 B |
Before Width: | Height: | Size: 798 B After Width: | Height: | Size: 610 B |
After Width: | Height: | Size: 440 B |
After Width: | Height: | Size: 443 B |
After Width: | Height: | Size: 443 B |
After Width: | Height: | Size: 446 B |
After Width: | Height: | Size: 451 B |
After Width: | Height: | Size: 455 B |
After Width: | Height: | Size: 455 B |
After Width: | Height: | Size: 466 B |
After Width: | Height: | Size: 465 B |
After Width: | Height: | Size: 471 B |
After Width: | Height: | Size: 477 B |
After Width: | Height: | Size: 478 B |
After Width: | Height: | Size: 486 B |
After Width: | Height: | Size: 503 B |
After Width: | Height: | Size: 494 B |
After Width: | Height: | Size: 483 B |
After Width: | Height: | Size: 493 B |
After Width: | Height: | Size: 499 B |
After Width: | Height: | Size: 494 B |
After Width: | Height: | Size: 489 B |
After Width: | Height: | Size: 480 B |
After Width: | Height: | Size: 482 B |
After Width: | Height: | Size: 480 B |
After Width: | Height: | Size: 469 B |
After Width: | Height: | Size: 459 B |
After Width: | Height: | Size: 462 B |
After Width: | Height: | Size: 455 B |
After Width: | Height: | Size: 448 B |
After Width: | Height: | Size: 445 B |
@ -1,137 +0,0 @@
|
|||||||
#include <kdialog.h>
|
|
||||||
#include <klocale.h>
|
|
||||||
/****************************************************************************
|
|
||||||
** Form implementation generated from reading ui file '../../exper/kdbg/procattachbase.ui'
|
|
||||||
**
|
|
||||||
** Created: Sun Jun 6 14:57:15 2010
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
#include "procattachbase.h"
|
|
||||||
|
|
||||||
#include <qvariant.h>
|
|
||||||
#include <qpushbutton.h>
|
|
||||||
#include <qlabel.h>
|
|
||||||
#include <qlineedit.h>
|
|
||||||
#include <qtoolbutton.h>
|
|
||||||
#include <qheader.h>
|
|
||||||
#include <qlistview.h>
|
|
||||||
#include <qlayout.h>
|
|
||||||
#include <qtooltip.h>
|
|
||||||
#include <qwhatsthis.h>
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Constructs a ProcAttachBase as a child of 'parent', with the
|
|
||||||
* name 'name' and widget flags set to 'f'.
|
|
||||||
*
|
|
||||||
* The dialog will by default be modeless, unless you set 'modal' to
|
|
||||||
* TRUE to construct a modal dialog.
|
|
||||||
*/
|
|
||||||
ProcAttachBase::ProcAttachBase( QWidget* parent, const char* name, bool modal, WFlags fl )
|
|
||||||
: QDialog( parent, name, modal, fl )
|
|
||||||
{
|
|
||||||
if ( !name )
|
|
||||||
setName( "ProcAttachBase" );
|
|
||||||
setSizeGripEnabled( TRUE );
|
|
||||||
ProcAttachBaseLayout = new QHBoxLayout( this, 10, 6, "ProcAttachBaseLayout");
|
|
||||||
|
|
||||||
layout7 = new QVBoxLayout( 0, 0, 6, "layout7");
|
|
||||||
|
|
||||||
layout6 = new QHBoxLayout( 0, 0, 6, "layout6");
|
|
||||||
|
|
||||||
filterLabel = new QLabel( this, "filterLabel" );
|
|
||||||
layout6->addWidget( filterLabel );
|
|
||||||
|
|
||||||
filterEdit = new QLineEdit( this, "filterEdit" );
|
|
||||||
filterEdit->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)7, (QSizePolicy::SizeType)5, 0, 0, filterEdit->sizePolicy().hasHeightForWidth() ) );
|
|
||||||
filterEdit->setMaxLength( 20 );
|
|
||||||
layout6->addWidget( filterEdit );
|
|
||||||
|
|
||||||
filterClear = new QToolButton( this, "filterClear" );
|
|
||||||
layout6->addWidget( filterClear );
|
|
||||||
layout7->addLayout( layout6 );
|
|
||||||
|
|
||||||
processList = new QListView( this, "processList" );
|
|
||||||
processList->addColumn( tr2i18n( "Command" ) );
|
|
||||||
processList->addColumn( tr2i18n( "PID" ) );
|
|
||||||
processList->addColumn( tr2i18n( "PPID" ) );
|
|
||||||
processList->setMinimumSize( QSize( 300, 200 ) );
|
|
||||||
processList->setAllColumnsShowFocus( TRUE );
|
|
||||||
layout7->addWidget( processList );
|
|
||||||
|
|
||||||
layout3 = new QHBoxLayout( 0, 0, 6, "layout3");
|
|
||||||
|
|
||||||
buttonRefresh = new QPushButton( this, "buttonRefresh" );
|
|
||||||
buttonRefresh->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)1, (QSizePolicy::SizeType)0, 0, 0, buttonRefresh->sizePolicy().hasHeightForWidth() ) );
|
|
||||||
layout3->addWidget( buttonRefresh );
|
|
||||||
spacingBtns = new QSpacerItem( 242, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
|
|
||||||
layout3->addItem( spacingBtns );
|
|
||||||
|
|
||||||
buttonOk = new QPushButton( this, "buttonOk" );
|
|
||||||
buttonOk->setEnabled( FALSE );
|
|
||||||
buttonOk->setAutoDefault( TRUE );
|
|
||||||
buttonOk->setDefault( TRUE );
|
|
||||||
layout3->addWidget( buttonOk );
|
|
||||||
|
|
||||||
buttonCancel = new QPushButton( this, "buttonCancel" );
|
|
||||||
buttonCancel->setAutoDefault( TRUE );
|
|
||||||
layout3->addWidget( buttonCancel );
|
|
||||||
layout7->addLayout( layout3 );
|
|
||||||
ProcAttachBaseLayout->addLayout( layout7 );
|
|
||||||
languageChange();
|
|
||||||
resize( QSize(560, 416).expandedTo(minimumSizeHint()) );
|
|
||||||
clearWState( WState_Polished );
|
|
||||||
|
|
||||||
// signals and slots connections
|
|
||||||
connect( buttonOk, SIGNAL( clicked() ), this, SLOT( accept() ) );
|
|
||||||
connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( reject() ) );
|
|
||||||
connect( buttonRefresh, SIGNAL( clicked() ), this, SLOT( refresh() ) );
|
|
||||||
connect( filterEdit, SIGNAL( textChanged(const QString&) ), this, SLOT( filterEdited(const QString&) ) );
|
|
||||||
connect( filterClear, SIGNAL( clicked() ), filterEdit, SLOT( clear() ) );
|
|
||||||
connect( processList, SIGNAL( selectionChanged() ), this, SLOT( selectedChanged() ) );
|
|
||||||
|
|
||||||
// tab order
|
|
||||||
setTabOrder( filterEdit, processList );
|
|
||||||
setTabOrder( processList, buttonRefresh );
|
|
||||||
setTabOrder( buttonRefresh, buttonOk );
|
|
||||||
setTabOrder( buttonOk, buttonCancel );
|
|
||||||
|
|
||||||
// buddies
|
|
||||||
filterLabel->setBuddy( filterEdit );
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Destroys the object and frees any allocated resources
|
|
||||||
*/
|
|
||||||
ProcAttachBase::~ProcAttachBase()
|
|
||||||
{
|
|
||||||
// no need to delete child widgets, Qt does it all for us
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Sets the strings of the subwidgets using the current
|
|
||||||
* language.
|
|
||||||
*/
|
|
||||||
void ProcAttachBase::languageChange()
|
|
||||||
{
|
|
||||||
setCaption( tr2i18n( "Attach to Process" ) );
|
|
||||||
filterLabel->setText( tr2i18n( "&Filter or PID:" ) );
|
|
||||||
QWhatsThis::add( filterEdit, tr2i18n( "Type the name of the process or its process ID (PID) here to reduce the number of entries in the list." ) );
|
|
||||||
filterClear->setText( tr2i18n( "..." ) );
|
|
||||||
QToolTip::add( filterClear, tr2i18n( "Clear filter" ) );
|
|
||||||
QWhatsThis::add( filterClear, tr2i18n( "Use this button to clear the filter text so that all processes are displayed." ) );
|
|
||||||
processList->header()->setLabel( 0, tr2i18n( "Command" ) );
|
|
||||||
processList->header()->setLabel( 1, tr2i18n( "PID" ) );
|
|
||||||
processList->header()->setLabel( 2, tr2i18n( "PPID" ) );
|
|
||||||
QWhatsThis::add( processList, tr2i18n( "<p>This list displays all processes that are currently running. You must select the process that you want KDbg to attach to. Use the <b>Filter or PID</b> edit box to reduce the number of entries in this list.<p>The text in the <i>Command</i> column is usually, but not always, the command that was used to start the process. The <i>PID</i> column shows the process ID. The <i>PPID</i> column shows the process ID of the parent process. Additional columns show more information about the processes that is also available via the system's <i>ps</i> command.</p><p>The list is not updated automatically. Use the <b>Refresh</b> button to update it.</p>" ) );
|
|
||||||
buttonRefresh->setText( tr2i18n( "&Refresh" ) );
|
|
||||||
QWhatsThis::add( buttonRefresh, tr2i18n( "This button updates the list of processes." ) );
|
|
||||||
buttonOk->setText( tr2i18n( "&OK" ) );
|
|
||||||
buttonOk->setAccel( QKeySequence( QString::null ) );
|
|
||||||
QWhatsThis::add( buttonOk, tr2i18n( "You must select a process from the list. Then click the <b>OK</b> button to attach to that process." ) );
|
|
||||||
buttonCancel->setText( tr2i18n( "&Cancel" ) );
|
|
||||||
buttonCancel->setAccel( QKeySequence( QString::null ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "procattachbase.moc"
|
|
@ -0,0 +1,81 @@
|
|||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### (executables)
|
||||||
|
|
||||||
|
tde_add_executable( anonstruct
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
anonstruct.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_add_executable( locals
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
locals.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_add_executable( maths
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
maths.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_add_executable( nestedclass
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
nestedclass.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_add_executable( qt
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
qt.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_add_executable( repeats
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
repeats.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_add_executable( std
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
std.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_add_executable( templates
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
templates.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_add_executable( testfile
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
testfile.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_add_executable( widechar
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
widechar.cpp
|
||||||
|
)
|
@ -1,62 +0,0 @@
|
|||||||
## This is the example XSL and XML files for debugging with xsldbg
|
|
||||||
EXTRA_DIST = xsldoc.xsl xsldoc.xml
|
|
||||||
|
|
||||||
# set the include path for X, qt and KDE
|
|
||||||
INCLUDES= $(all_includes)
|
|
||||||
# always compile with debugging info switched on
|
|
||||||
AM_CXXFLAGS = -g
|
|
||||||
|
|
||||||
# Disable optimization to ensure that variables are not hidden by the
|
|
||||||
# compiler
|
|
||||||
CXXFLAGS:=$(patsubst -O%,,$(CXXFLAGS))
|
|
||||||
|
|
||||||
if BUILDTESTPROGS
|
|
||||||
PROGS = \
|
|
||||||
anonstruct \
|
|
||||||
locals \
|
|
||||||
maths \
|
|
||||||
nestedclass \
|
|
||||||
qt \
|
|
||||||
repeats \
|
|
||||||
std \
|
|
||||||
templates \
|
|
||||||
testfile \
|
|
||||||
widechar
|
|
||||||
else
|
|
||||||
PROGS =
|
|
||||||
endif
|
|
||||||
|
|
||||||
noinst_PROGRAMS = $(PROGS)
|
|
||||||
|
|
||||||
testfile_SOURCES = testfile.cpp
|
|
||||||
testfile_LDFLAGS = -g $(all_libraries) $(KDE_RPATH)
|
|
||||||
testfile_LDADD = $(LIB_QT)
|
|
||||||
|
|
||||||
locals_SOURCES = locals.cpp
|
|
||||||
locals_LDFLAGS = -g
|
|
||||||
|
|
||||||
maths_SOURCES = maths.cpp
|
|
||||||
maths_LDFLAGS = -g
|
|
||||||
|
|
||||||
qt_SOURCES = qt.cpp
|
|
||||||
qt_LDFLAGS = -g $(all_libraries) $(KDE_RPATH)
|
|
||||||
qt_LDADD = $(LIB_QT)
|
|
||||||
|
|
||||||
repeats_SOURCES = repeats.cpp
|
|
||||||
repeats_LDFLAGS = -g $(all_libraries) $(KDE_RPATH)
|
|
||||||
repeats_LDADD = $(LIB_QT)
|
|
||||||
|
|
||||||
std_SOURCES = std.cpp
|
|
||||||
std_LDFLAGS = -g
|
|
||||||
|
|
||||||
templates_SOURCES = templates.cpp
|
|
||||||
templates_LDFLAGS = -g
|
|
||||||
|
|
||||||
anonstruct_SOURCES = anonstruct.cpp
|
|
||||||
anonstruct_LDFLAGS = -g
|
|
||||||
|
|
||||||
nestedclass_SOURCES = nestedclass.cpp
|
|
||||||
nestedclass_LDFLAGS = -g
|
|
||||||
|
|
||||||
widechar_SOURCES = widechar.cpp
|
|
||||||
widechar_LDFLAGS = -g
|
|
@ -0,0 +1,6 @@
|
|||||||
|
file( GLOB _types RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.kdbgtt )
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES ${_types}
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/types
|
||||||
|
)
|
@ -1,16 +0,0 @@
|
|||||||
# types in libraries that we understand
|
|
||||||
typesdir = $(kde_datadir)/kdbg/types
|
|
||||||
types_DATA = \
|
|
||||||
qt.kdbgtt \
|
|
||||||
qt2.kdbgtt \
|
|
||||||
qt3.kdbgtt \
|
|
||||||
qt4core.kdbgtt \
|
|
||||||
kdecore.kdbgtt \
|
|
||||||
kdecore3.kdbgtt \
|
|
||||||
glib.kdbgtt \
|
|
||||||
gtk+.kdbgtt \
|
|
||||||
stdc++.kdbgtt \
|
|
||||||
stdc++6.kdbgtt \
|
|
||||||
X11.kdbgtt
|
|
||||||
|
|
||||||
EXTRA_DIST = $(types_DATA)
|
|
@ -1,7 +0,0 @@
|
|||||||
[Type Table]
|
|
||||||
Types1=KSimpleConfig
|
|
||||||
LibDisplayName=kdecore (KDE 1.0 and 1.1)
|
|
||||||
ShlibRE=libkdecore\.so\.[12]$
|
|
||||||
[KSimpleConfig]
|
|
||||||
Display={ global=% }
|
|
||||||
Expr1=(%s).pData->aGlobalAppFile.shd->data
|
|
@ -1,23 +0,0 @@
|
|||||||
[Type Table]
|
|
||||||
Types1=QString,QDir,QFileInfo,QFile
|
|
||||||
Types2=QObject,QTableView
|
|
||||||
LibDisplayName=libqt 1.x
|
|
||||||
ShlibRE=libqt\.so\.1$
|
|
||||||
[QString]
|
|
||||||
Display={ % }
|
|
||||||
Expr1=(%s).shd->data
|
|
||||||
[QObject]
|
|
||||||
Display={ name=% }
|
|
||||||
Expr1=(%s).objname
|
|
||||||
[QTableView]
|
|
||||||
Alias=QObject
|
|
||||||
[QDir]
|
|
||||||
Display={ path=% filter=% }
|
|
||||||
Expr1=((%s).dPath.shd->data)
|
|
||||||
Expr2=((%s).nameFilt.shd->data)
|
|
||||||
[QFileInfo]
|
|
||||||
Display={ name=% }
|
|
||||||
Expr1=((%s).fn.shd->data)
|
|
||||||
[QFile]
|
|
||||||
Display={ name=% }
|
|
||||||
Expr1=((%s).fn.shd->data)
|
|
@ -1,28 +0,0 @@
|
|||||||
[Type Table]
|
|
||||||
Types1=QString,QCString,QDir,QFileInfo,QFile
|
|
||||||
Types2=QObject,QTableView
|
|
||||||
LibDisplayName=libqt 2.x
|
|
||||||
ShlibRE=libqt\.so\.2$
|
|
||||||
EnableBuiltin=QString::Data
|
|
||||||
PrintQStringCmd=print ($qstrunicode=($qstrdata=(%s))->unicode)?(*(unsigned short*)$qstrunicode)@(($qstrlen=(unsigned int)($qstrdata->len))>100?100:$qstrlen):1==0\n
|
|
||||||
[QString]
|
|
||||||
Display={ % }
|
|
||||||
Expr1=/QString::Data (%s).d
|
|
||||||
[QCString]
|
|
||||||
Display={ % }
|
|
||||||
Expr1=(%s).shd->data
|
|
||||||
[QObject]
|
|
||||||
Display={ name=% }
|
|
||||||
Expr1=(%s).objname
|
|
||||||
[QTableView]
|
|
||||||
Alias=QObject
|
|
||||||
[QDir]
|
|
||||||
Display={ path=% filter=% }
|
|
||||||
Expr1=/QString::Data (%s).dPath.d
|
|
||||||
Expr2=/QString::Data (%s).nameFilt.d
|
|
||||||
[QFileInfo]
|
|
||||||
Display={ name=% }
|
|
||||||
Expr1=/QString::Data (%s).fn.d
|
|
||||||
[QFile]
|
|
||||||
Display={ name=% }
|
|
||||||
Expr1=/QString::Data (%s).fn.d
|
|
@ -1,7 +1,7 @@
|
|||||||
[Type Table]
|
[Type Table]
|
||||||
Types1=KSimpleConfig
|
Types1=KSimpleConfig
|
||||||
LibDisplayName=kdecore (KDE post-1.1)
|
LibDisplayName=tdecore (KDE post-1.1)
|
||||||
ShlibRE=libkdecore\.so\.3$
|
ShlibRE=libtdecore\.so\.3$
|
||||||
[KSimpleConfig]
|
[KSimpleConfig]
|
||||||
Display={ global=% }
|
Display={ global=% }
|
||||||
Expr1=(*(%s).pData->aGlobalAppFile.shd->data)
|
Expr1=(*(%s).pData->aGlobalAppFile.shd->data)
|
@ -1,5 +0,0 @@
|
|||||||
POFILES = AUTO
|
|
||||||
|
|
||||||
# To merge the messages from kdbg.pot into the *.po files do this
|
|
||||||
# in the _source_ directory:
|
|
||||||
# make -f ../admin/Makefile.common package-merge POFILES='*.po' PACKAGE=kdbg > /dev/null
|
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: br\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Dizraener"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Goulevioù dizraenañ"
|
@ -0,0 +1,33 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: ca\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Programes per localització d'errors"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Programes per localització d'errors"
|
@ -0,0 +1,33 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: cs\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Ladídí program"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Ladídí program"
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: da\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Afluser"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Afluseprogrammer"
|
@ -0,0 +1,33 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: de\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Programme debuggen"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Programme debuggen"
|
@ -0,0 +1,33 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# Juan M Ayala <linux.zero@yahoo.com>, 2025.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: 2025-01-21 10:12+0000\n"
|
||||||
|
"Last-Translator: Juan M Ayala <linux.zero@yahoo.com>\n"
|
||||||
|
"Language-Team: Spanish <https://mirror.git.trinitydesktop.org/weblate/"
|
||||||
|
"projects/applications/kdbg-kdbgdesktop/es/>\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: Weblate 4.17\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr "KDbg"
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Depurador"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Depurador de programas"
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: fi\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Debuggeri"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Tutki ohjelmien toimintaa"
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: fr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Débogueur"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Déboguer un programme"
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: is\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Aflúsun"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "kdbg: Forrit til ađ aflúsa önnur forrit"
|
@ -0,0 +1,33 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# Temuri Doghonadze <rkavt@smartprojects.ge>, 2024.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: 2024-11-03 19:11+0000\n"
|
||||||
|
"Last-Translator: Temuri Doghonadze <rkavt@smartprojects.ge>\n"
|
||||||
|
"Language-Team: Georgian <https://mirror.git.trinitydesktop.org/weblate/"
|
||||||
|
"projects/applications/kdbg-kdbgdesktop/ka/>\n"
|
||||||
|
"Language: ka\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: Weblate 4.17\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr "KDbg"
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "გამმართველი"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "პროგრამების გამართვა"
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr ""
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: no\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Avluser"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Avluse programmer"
|
@ -0,0 +1,33 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: pl\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Program do debugowania"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Program do debugowania"
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: pt\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Depurador"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Depurador de programas"
|
@ -0,0 +1,33 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# Sebastião Guerra <sebastiao.luiz.guerra@gmail.com>, 2021.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: 2021-12-17 22:00+0000\n"
|
||||||
|
"Last-Translator: Sebastião Guerra <sebastiao.luiz.guerra@gmail.com>\n"
|
||||||
|
"Language-Team: Portuguese (Brazil) <https://mirror.git.trinitydesktop.org/"
|
||||||
|
"weblate/projects/applications/kdbg-kdbgdesktop/pt_BR/>\n"
|
||||||
|
"Language: pt_BR\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: Weblate 4.9.1\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr "KDbg"
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Depurador"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Depurador de programas"
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: ro\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Depanator"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Depanator de programe"
|
@ -0,0 +1,34 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# Andrei Stepanov <adem4ik@gmail.com>, 2023.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: 2023-12-01 10:14+0000\n"
|
||||||
|
"Last-Translator: Andrei Stepanov <adem4ik@gmail.com>\n"
|
||||||
|
"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
|
||||||
|
"projects/applications/kdbg-kdbgdesktop/ru/>\n"
|
||||||
|
"Language: ru\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||||
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
|
"X-Generator: Weblate 4.17\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr "KDbg"
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Отладчик"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Отлаживает программы"
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: sk\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Ladiaci program"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Ladiaci program"
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: sl\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Razhroščevalnik"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Odpravljanje napak v programih"
|
@ -0,0 +1,32 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# This file is put in the public domain.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2021-07-02 15:35+0900\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: sv\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Name
|
||||||
|
#: kdbg.desktop:2
|
||||||
|
msgid "KDbg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. GenericName
|
||||||
|
#: kdbg.desktop:4
|
||||||
|
msgid "Debugger"
|
||||||
|
msgstr "Avlusare"
|
||||||
|
|
||||||
|
#. Comment
|
||||||
|
#: kdbg.desktop:6
|
||||||
|
msgid "Debug programs"
|
||||||
|
msgstr "Avlusar program"
|
@ -0,0 +1,836 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"POT-Creation-Date: 2022-09-07 18:27+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
|
||||||
|
#, ignore-inconsistent
|
||||||
|
msgid ""
|
||||||
|
"_: NAME OF TRANSLATORS\n"
|
||||||
|
"Your names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
|
||||||
|
#, ignore-inconsistent
|
||||||
|
msgid ""
|
||||||
|
"_: EMAIL OF TRANSLATORS\n"
|
||||||
|
"Your emails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:63
|
||||||
|
msgid "Add &Breakpoint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:67
|
||||||
|
msgid "Add &Watchpoint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:76 brkpt.cpp:235
|
||||||
|
msgid "&Disable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:81 brkpt.cpp:237
|
||||||
|
msgid "&Enable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:91
|
||||||
|
msgid "&View Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:95
|
||||||
|
msgid "&Conditional..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:316 threadlist.cpp:42
|
||||||
|
msgid "Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:317 memwindow.cpp:55
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:318
|
||||||
|
msgid "Hits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:319
|
||||||
|
msgid "Ignore"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:320
|
||||||
|
msgid "Condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:443
|
||||||
|
msgid ": Conditional breakpoint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:446
|
||||||
|
msgid "&Condition:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: brkpt.cpp:448
|
||||||
|
msgid "Ignore &next hits:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:46
|
||||||
|
msgid "Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:54 dbgmainwnd.cpp:388
|
||||||
|
msgid "Stack"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:57 dbgmainwnd.cpp:389
|
||||||
|
msgid "Locals"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:58
|
||||||
|
msgid "Variable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:60 dbgmainwnd.cpp:390
|
||||||
|
msgid "Watches"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:63 dbgmainwnd.cpp:391
|
||||||
|
msgid "Registers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:66 dbgmainwnd.cpp:392
|
||||||
|
msgid "Breakpoints"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:69 dbgmainwnd.cpp:394
|
||||||
|
msgid "Output"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:72 dbgmainwnd.cpp:393
|
||||||
|
msgid "Threads"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:75 dbgmainwnd.cpp:395
|
||||||
|
msgid "Memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:181
|
||||||
|
msgid "&Open Source..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:183
|
||||||
|
msgid "&Reload Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:186
|
||||||
|
msgid "&Executable..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:189
|
||||||
|
msgid "Recent E&xecutables"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:192
|
||||||
|
msgid "&Core dump..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:197
|
||||||
|
msgid "This &Program..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:200
|
||||||
|
msgid "&Global Options..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:207
|
||||||
|
msgid "&Find"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:213
|
||||||
|
msgid "Source &code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:215
|
||||||
|
msgid "Stac&k"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:216
|
||||||
|
msgid "&Locals"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:217
|
||||||
|
msgid "&Watched expressions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:218
|
||||||
|
msgid "&Registers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:219
|
||||||
|
msgid "&Breakpoints"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:220
|
||||||
|
msgid "T&hreads"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:221 pgmsettings.cpp:112
|
||||||
|
msgid "&Output"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:222
|
||||||
|
msgid "&Memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:232
|
||||||
|
msgid "&Run"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:235
|
||||||
|
msgid "Step &into"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:239
|
||||||
|
msgid "Step &over"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:243
|
||||||
|
msgid "Step o&ut"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:247
|
||||||
|
msgid "Run to &cursor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:251
|
||||||
|
msgid "Step i&nto by instruction"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:255
|
||||||
|
msgid "Step o&ver by instruction"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:259
|
||||||
|
msgid "&Program counter to current line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:262
|
||||||
|
msgid "&Break"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:265
|
||||||
|
msgid "&Kill"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:268
|
||||||
|
msgid "Re&start"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:271
|
||||||
|
msgid "A&ttach..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:274
|
||||||
|
msgid "&Arguments..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:279
|
||||||
|
msgid "Set/Clear &breakpoint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:282
|
||||||
|
msgid "Set &temporary breakpoint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:285
|
||||||
|
msgid "&Enable/Disable breakpoint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:290
|
||||||
|
msgid "Watch Expression"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:293
|
||||||
|
msgid "Edit Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:322
|
||||||
|
msgid "Restart"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:323
|
||||||
|
msgid "Core dump"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:588
|
||||||
|
msgid "`%1' is not a file or does not exist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:702
|
||||||
|
msgid "|All source files\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:703
|
||||||
|
msgid "|Source files\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:704
|
||||||
|
msgid "|Header files\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:705
|
||||||
|
msgid "*|All files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:800
|
||||||
|
msgid "Select the executable to debug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dbgmainwnd.cpp:813
|
||||||
|
msgid "Select core dump"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debugger.cpp:650
|
||||||
|
msgid ""
|
||||||
|
"%1 exited unexpectedly.\n"
|
||||||
|
"Restart the session (e.g. with File|Executable)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: debugger.cpp:833
|
||||||
|
msgid ""
|
||||||
|
"The settings for this program specify the following debugger command:\n"
|
||||||
|
"%1\n"
|
||||||
|
"Shall this command be used?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: exprwnd.cpp:314 pgmargsbase.ui:297 regwnd.cpp:428
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: gdbdriver.cpp:892
|
||||||
|
msgid "<anonymous struct or union>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: gdbdriver.cpp:1498
|
||||||
|
msgid "<additional entries of the array suppressed>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: gdbdriver.cpp:2053 xsldbgdriver.cpp:1304
|
||||||
|
msgid "New working directory: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:38
|
||||||
|
msgid "A Debugger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:46
|
||||||
|
msgid "XSLT debugging"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:49
|
||||||
|
msgid "Register groups and formating"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:54
|
||||||
|
msgid "transcript of conversation with the debugger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:55
|
||||||
|
msgid "remote debugging via <device>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:56
|
||||||
|
msgid "specify language: C, XSLT"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:57
|
||||||
|
msgid "use language XSLT (deprecated)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:58
|
||||||
|
msgid "specify arguments of debugged executable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:59
|
||||||
|
msgid "specify PID of process to debug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:60
|
||||||
|
msgid "path of executable to debug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:61
|
||||||
|
msgid "a core file to use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.cpp:126
|
||||||
|
msgid "Cannot start debugger."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mainwndbase.cpp:43
|
||||||
|
msgid " Add "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mainwndbase.cpp:44
|
||||||
|
msgid " Del "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mainwndbase.cpp:45
|
||||||
|
msgid "Expression"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mainwndbase.cpp:135
|
||||||
|
msgid "active"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mainwndbase.cpp:301
|
||||||
|
msgid "Don't know how to debug language `%1'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mainwndbase.cpp:314
|
||||||
|
msgid ""
|
||||||
|
"Could not start the debugger process.\n"
|
||||||
|
"Please shut down KDbg and resolve the problem."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mainwndbase.cpp:418
|
||||||
|
msgid ": Global options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mainwndbase.cpp:435 pgmsettings.cpp:111
|
||||||
|
msgid "&Debugger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mainwndbase.cpp:436
|
||||||
|
msgid "&Miscellaneous"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mainwndbase.cpp:506
|
||||||
|
msgid ": Program output"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:70
|
||||||
|
msgid "B&ytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:71
|
||||||
|
msgid "Halfwords (&2 Bytes)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:72
|
||||||
|
msgid "Words (&4 Bytes)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:73
|
||||||
|
msgid "Giantwords (&8 Bytes)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:75 regwnd.cpp:79
|
||||||
|
msgid "He&xadecimal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:76
|
||||||
|
msgid "Signed &decimal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:77
|
||||||
|
msgid "&Unsigned decimal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:78 regwnd.cpp:77
|
||||||
|
msgid "&Octal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:79 regwnd.cpp:76
|
||||||
|
msgid "&Binary"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:80
|
||||||
|
msgid "&Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:81
|
||||||
|
msgid "&Character"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:82
|
||||||
|
msgid "&Floatingpoint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:83
|
||||||
|
msgid "&Strings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: memwindow.cpp:84
|
||||||
|
msgid "&Instructions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargs.cpp:216
|
||||||
|
msgid "Select a file name to insert as program argument"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargs.cpp:230
|
||||||
|
msgid "Select a directory to insert as program argument"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmsettings.cpp:26
|
||||||
|
msgid ""
|
||||||
|
"How to invoke &GDB - leave empty to use\n"
|
||||||
|
"the default from the global options:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmsettings.cpp:61
|
||||||
|
msgid "&No input and output"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmsettings.cpp:66
|
||||||
|
msgid "&Only output, simple terminal emulation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmsettings.cpp:71
|
||||||
|
msgid "&Full terminal emulation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmsettings.cpp:105
|
||||||
|
msgid "%1: Settings for %2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: prefdebugger.cpp:21
|
||||||
|
msgid "To revert to the default settings, clear the entries."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: prefdebugger.cpp:25
|
||||||
|
msgid "How to invoke &GDB:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: prefdebugger.cpp:32
|
||||||
|
msgid ""
|
||||||
|
"%T will be replaced with a title string,\n"
|
||||||
|
"%C will be replaced by a Bourne shell script that\n"
|
||||||
|
"keeps the terminal window open."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: prefdebugger.cpp:38
|
||||||
|
msgid "&Terminal for program output:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: prefmisc.cpp:23
|
||||||
|
msgid "&Pop into foreground when program stops"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: prefmisc.cpp:28
|
||||||
|
msgid "Time until window goes &back (in milliseconds):"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: prefmisc.cpp:35
|
||||||
|
msgid "&Tabstop every (characters):"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: prefmisc.cpp:37
|
||||||
|
msgid "File filter for &source files:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: prefmisc.cpp:39
|
||||||
|
msgid "File filter for &header files:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattach.cpp:271
|
||||||
|
msgid ": Attach to process"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattach.cpp:275
|
||||||
|
msgid "Specify the process number to attach to:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: regwnd.cpp:75
|
||||||
|
msgid "&GDB default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: regwnd.cpp:78
|
||||||
|
msgid "&Decimal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: regwnd.cpp:80
|
||||||
|
msgid "Real (&e)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: regwnd.cpp:81
|
||||||
|
msgid "Real (&f)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: regwnd.cpp:82
|
||||||
|
msgid "&Real (g)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: regwnd.cpp:427
|
||||||
|
msgid "Register"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: regwnd.cpp:429
|
||||||
|
msgid "Decoded value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: regwnd.cpp:462
|
||||||
|
msgid "x86/x87 segment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: regwnd.cpp:465
|
||||||
|
msgid "Flags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: regwnd.cpp:468
|
||||||
|
msgid "GP and others"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: threadlist.cpp:41
|
||||||
|
msgid "Thread ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ttywnd.cpp:229
|
||||||
|
msgid "&Clear"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: winstack.cpp:390
|
||||||
|
msgid ": Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: winstack.cpp:396
|
||||||
|
msgid "&Case sensitive"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: winstack.cpp:398
|
||||||
|
msgid "&Forward"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: winstack.cpp:400
|
||||||
|
msgid "&Backward"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: xsldbgdriver.cpp:1411
|
||||||
|
msgid "No memory dump available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdbgui.rc:25
|
||||||
|
#, no-c-format
|
||||||
|
msgid "E&xecution"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdbgui.rc:42
|
||||||
|
#, no-c-format
|
||||||
|
msgid "&Breakpoint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:16
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Program Arguments"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:48
|
||||||
|
#, no-c-format
|
||||||
|
msgid "&Arguments"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:67
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Run <i>%1</i> with these arguments:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:78
|
||||||
|
#, no-c-format
|
||||||
|
msgid ""
|
||||||
|
"Specify the arguments with which the program shall be invoked for this "
|
||||||
|
"debugging session. You specify the arguments just as you would on the "
|
||||||
|
"command line, that is, you can even use quotes and environment variables, "
|
||||||
|
"for example:<p><tt>--message 'start in: ' $HOME</tt>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:94
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Insert &file name..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:97
|
||||||
|
#, no-c-format
|
||||||
|
msgid ""
|
||||||
|
"Browse for a file; the full path name will be inserted at the current cursor "
|
||||||
|
"location in the edit box above."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:105
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Insert &directory name..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:108
|
||||||
|
#, no-c-format
|
||||||
|
msgid ""
|
||||||
|
"Browse for a directory; the full path name will be inserted at the current "
|
||||||
|
"cursor location in the edit box above."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:156
|
||||||
|
#, no-c-format
|
||||||
|
msgid "&Working Directory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:175
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Specify here the initial working directory where the program is run."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:191
|
||||||
|
#, no-c-format
|
||||||
|
msgid "&Browse..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:194
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Browse for the initial working directory where the program is run."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:242
|
||||||
|
#, no-c-format
|
||||||
|
msgid "&Environment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:269
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Environment variables (<tt>NAME=value</tt>):"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:280
|
||||||
|
#, no-c-format
|
||||||
|
msgid ""
|
||||||
|
"To add a new environment variable or to modify one, specify it here in the "
|
||||||
|
"form <tt>NAME=value</tt> and click <b>Modify</b>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:286
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:313
|
||||||
|
#, no-c-format
|
||||||
|
msgid ""
|
||||||
|
"Environment variables that are set <i>in addition</i> to those that are "
|
||||||
|
"inherited are listed in this table. To add new environment variables, "
|
||||||
|
"specify them as <tt>NAME=value</tt> in the edit box above and click "
|
||||||
|
"<b>Modify</b>. To modify a value, select it in this list and click "
|
||||||
|
"<b>Modify</b>. To delete an environment variable, select it in this list and "
|
||||||
|
"click <b>Delete</b>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:334
|
||||||
|
#, no-c-format
|
||||||
|
msgid ""
|
||||||
|
"Enters the environment variable that is currently specified in the edit box "
|
||||||
|
"into the list. If the named variable is already in the list, it receives a "
|
||||||
|
"new value; otherwise, a new entry is created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:345
|
||||||
|
#, no-c-format
|
||||||
|
msgid ""
|
||||||
|
"Deletes the selected environment variable from the list. This cannot be used "
|
||||||
|
"to delete environment variables that are inherited."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:376
|
||||||
|
#, no-c-format
|
||||||
|
msgid "&xsldbg Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pgmargsbase.ui:415
|
||||||
|
#, no-c-format
|
||||||
|
msgid "F1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:17
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Attach to Process"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:47
|
||||||
|
#, no-c-format
|
||||||
|
msgid "&Filter or PID:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:69
|
||||||
|
#, no-c-format
|
||||||
|
msgid ""
|
||||||
|
"Type the name of the process or its process ID (PID) here to reduce the "
|
||||||
|
"number of entries in the list."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:77
|
||||||
|
#, no-c-format
|
||||||
|
msgid "..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:80
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Clear filter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:83
|
||||||
|
#, no-c-format
|
||||||
|
msgid ""
|
||||||
|
"Use this button to clear the filter text so that all processes are displayed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:91
|
||||||
|
#, no-c-format
|
||||||
|
msgid "Command"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:102
|
||||||
|
#, no-c-format
|
||||||
|
msgid "PID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:113
|
||||||
|
#, no-c-format
|
||||||
|
msgid "PPID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:135
|
||||||
|
#, no-c-format
|
||||||
|
msgid ""
|
||||||
|
"<p>This list displays all processes that are currently running. You must "
|
||||||
|
"select the process that you want KDbg to attach to. Use the <b>Filter or "
|
||||||
|
"PID</b> edit box to reduce the number of entries in this list.<p>The text in "
|
||||||
|
"the <i>Command</i> column is usually, but not always, the command that was "
|
||||||
|
"used to start the process. The <i>PID</i> column shows the process ID. The "
|
||||||
|
"<i>PPID</i> column shows the process ID of the parent process. Additional "
|
||||||
|
"columns show more information about the processes that is also available via "
|
||||||
|
"the system's <i>ps</i> command.</p><p>The list is not updated automatically. "
|
||||||
|
"Use the <b>Refresh</b> button to update it.</p>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:159
|
||||||
|
#, no-c-format
|
||||||
|
msgid "&Refresh"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:162
|
||||||
|
#, no-c-format
|
||||||
|
msgid "This button updates the list of processes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: procattachbase.ui:199
|
||||||
|
#, no-c-format
|
||||||
|
msgid ""
|
||||||
|
"You must select a process from the list. Then click the <b>OK</b> button to "
|
||||||
|
"attach to that process."
|
||||||
|
msgstr ""
|