Branch: null

5dc1ccc6 2009-11-25 11:56:58 toma
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
A Doxyfile.am
A Doxyfile.global
A Makefile.common
A acinclude.m4.in
A am_edit
A bcheck.pl
A compile
A conf.change.pl
A config.guess
A config.pl
A config.sub
A configure.in.bot.end
A configure.in.min
A cvs.sh
A debianrules
A depcomp
A deps.am
A detect-autoconf.pl
A doxygen.sh
A install-sh
A libtool.m4.in
A ltmain.sh
A missing
A mkinstalldirs
A nmcheck
A oldinclude.m4.in
A pkg.m4.in
A ylwrap
diff --git a/Doxyfile.am b/Doxyfile.am
new file mode 100644
index 0000000..420b411
--- /dev/null
+++ b/Doxyfile.am
@@ -0,0 +1,102 @@
+## generate API documentation with doxygen
+apidox-am-yes:
+	@if test \! -d "$(top_srcdir)/doc/common/" && test -z "$$DOXDATA" ; then \
+		export DOXDATA=$(kde_libs_htmldir)/en/common ; \
+	fi ; \
+	abs_top_srcdir=`cd $(top_srcdir) && pwd` ;\
+	test -d $(top_builddir)/apidocs || \
+		( cd $(top_builddir) && sh $$abs_top_srcdir/admin/doxygen.sh \
+		--no-modulename --installdir=$(kde_libs_htmldir)/en \
+		--no-recurse $(abs_top_srcdir) . ) ; \
+	cd $(top_builddir) && sh $$abs_top_srcdir/admin/doxygen.sh \
+		--recurse --no-modulename --installdir=$(kde_libs_htmldir)/en \
+		$$abs_top_srcdir $(subdir)
+
+apidox-am-toplevel-yes:
+	@if test \! -d "$(top_srcdir)/doc/common/" && test -z "$$ADMIN" ; then \
+		export DOXDATA=$(kde_libs_htmldir)/en/common ; \
+	fi ; \
+	abs_top_srcdir=`cd $(top_srcdir) && pwd` ;\
+	cd $(top_builddir) && sh $$abs_top_srcdir/admin/doxygen.sh \
+		--no-modulename --installdir=$(kde_libs_htmldir)/en \
+		$$abs_top_srcdir
+
+## Don't generate API documentation without doxygen
+apidox-am-no:
+
+apidox-am-toplevel-no:
+
+
+apidox:
+	@if test "$(subdir)" != "."; then \
+		$(MAKE) apidox-am-@KDE_HAS_DOXYGEN@ ;\
+	else \
+		$(MAKE) apidox-am-toplevel-@KDE_HAS_DOXYGEN@ ;\
+	fi
+
+
+
+install-data-local: install-apidox
+
+## install API documentation
+install-apidox:
+	@if test "$(subdir)" != "."; then \
+		$(mkinstalldirs) $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs/$(subdir)/html ; \
+		if test -f $(top_builddir)/apidocs/$(subdir)/$(subdir).tag; then \
+		echo $(INSTALL_DATA) $(top_builddir)/apidocs/$(subdir)/$(subdir).tag $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs/$(subdir); \
+		$(INSTALL_DATA) $(top_builddir)/apidocs/$(subdir)/$(subdir).tag $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs/$(subdir); \
+		fi; \
+		if test -d $(top_builddir)/apidocs/$(subdir)/html; then \
+			list=`ls $(top_builddir)/apidocs/$(subdir)/html`; \
+			echo "installing $(top_builddir)/apidocs/$(subdir)/html" ;\
+			for file in $$list; do \
+				$(INSTALL_DATA) $(top_builddir)/apidocs/$(subdir)/html/$$file $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs/$(subdir)/html; \
+		done; \
+		fi; \
+	else\
+		if test -d $(top_builddir)/apidocs; then \
+		$(mkinstalldirs) $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs ;\
+		list=`cd $(top_builddir)/apidocs && ls -1`; \
+		echo "installing $(top_builddir)/apidocs/$$file" ;\
+		echo "target directory $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs" ; \
+		for file in $$list; do \
+			if test -f $(top_builddir)/apidocs/$$file; then \
+				$(INSTALL_DATA) $(top_builddir)/apidocs/$$file $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs; \
+			fi; \
+		done ; fi; \
+	fi
+
+uninstall-local: uninstall-apidox
+
+## uninstall API documentation
+uninstall-apidox:
+	@if test "$(subdir)" != "."; then \
+		if test -d $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs/$(subdir); then \
+			rm -rf $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs/$(subdir); \
+		fi \
+	else \
+		if test -d $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs; then \
+			rm -rf $(DESTDIR)$(kde_htmldir)/en/$(PACKAGE)-apidocs; \
+		fi \
+	fi
+
+install-apidox-recurse: install-apidox
+	@set fnord $(MAKEFLAGS); amf=$$2; if test -n '$(SUBDIRS)'; then \
+	    list='$(SUBDIRS)'; \
+	    for subdir in $$list; do \
+		if grep '^include .*Doxyfile.am' $(srcdir)/$$subdir/Makefile.am > /dev/null ; then \
+		echo "Installing apidox from $$subdir"; \
+		if test "$$subdir" != "."; then \
+			(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) GENERATE_FLAG=no install-apidox-recurse) || exit 1; \
+		fi ; fi ;\
+	    done; \
+	fi
+
+
+
+.PHONY: apidox-am-yes apidox-am-no install-data-local install-apidox install-apidox uninstall-local uninstall-apidox uninstall-apidox apidox apidox-am-toplevel-no apidox-am-toplevel-yes
+
+
+# Local Variables:
+# mode: makefile
+# End:
diff --git a/Doxyfile.global b/Doxyfile.global
new file mode 100755
index 0000000..1b9f560
--- /dev/null
+++ b/Doxyfile.global
@@ -0,0 +1,192 @@
+OUTPUT_LANGUAGE        = English
+USE_WINDOWS_ENCODING   = NO
+BRIEF_MEMBER_DESC      = NO
+REPEAT_BRIEF           = YES
+ABBREVIATE_BRIEF       = 
+ALWAYS_DETAILED_SEC    = YES
+INLINE_INHERITED_MEMB  = NO
+FULL_PATH_NAMES        = NO
+STRIP_FROM_PATH        = 
+SHORT_NAMES            = NO
+JAVADOC_AUTOBRIEF      = YES
+MULTILINE_CPP_IS_BRIEF = NO
+INHERIT_DOCS           = YES
+DISTRIBUTE_GROUP_DOC   = NO
+TAB_SIZE               = 4
+OPTIMIZE_OUTPUT_FOR_C  = NO
+OPTIMIZE_OUTPUT_JAVA   = NO
+SUBGROUPING            = YES
+EXTRACT_ALL            = NO
+EXTRACT_PRIVATE        = NO
+EXTRACT_STATIC         = YES
+EXTRACT_LOCAL_CLASSES  = NO
+HIDE_UNDOC_MEMBERS     = NO
+HIDE_UNDOC_CLASSES     = YES
+HIDE_FRIEND_COMPOUNDS  = NO
+HIDE_IN_BODY_DOCS      = NO
+INTERNAL_DOCS          = NO
+CASE_SENSE_NAMES       = YES
+HIDE_SCOPE_NAMES       = NO
+SHOW_INCLUDE_FILES     = YES
+INLINE_INFO            = YES
+SORT_BRIEF_DOCS        = NO
+SORT_BY_SCOPE_NAME     = NO
+GENERATE_TESTLIST      = NO
+GENERATE_BUGLIST       = YES
+GENERATE_DEPRECATEDLIST= YES
+ENABLED_SECTIONS       = 
+MAX_INITIALIZER_LINES  = 30
+SHOW_USED_FILES        = YES
+QUIET                  = YES
+WARNINGS               = NO
+WARN_IF_UNDOCUMENTED   = NO
+WARN_IF_DOC_ERROR      = YES
+WARN_FORMAT            = 
+WARN_LOGFILE           = 
+INPUT                  = 
+FILE_PATTERNS          = *.h \
+                         *.cpp \
+                         *.cc \
+                         *.hpp \
+                         *.dox \
+                         *.c++ \
+                         *.cxx \
+                         *.h++ \
+                         *.hh
+RECURSIVE              = YES
+EXCLUDE                = 
+EXCLUDE_SYMLINKS       = NO
+EXCLUDE_PATTERNS       = *.moc.* \
+                         moc* \
+                         *.all_cpp.* \
+                         *unload.* \
+                         */test/* \
+                         */tests/* \
+                         *_p.h 
+EXAMPLE_PATH           = 
+EXAMPLE_PATTERNS       = 
+EXAMPLE_RECURSIVE      = NO
+IMAGE_PATH             = 
+INPUT_FILTER           = 
+FILTER_SOURCE_FILES    = NO
+SOURCE_BROWSER         = YES
+INLINE_SOURCES         = NO
+STRIP_CODE_COMMENTS    = YES
+REFERENCED_BY_RELATION = YES
+REFERENCES_RELATION    = YES
+VERBATIM_HEADERS       = YES
+ALPHABETICAL_INDEX     = YES
+COLS_IN_ALPHA_INDEX    = 3
+HTML_OUTPUT            = 
+HTML_FILE_EXTENSION    = .html
+HTML_HEADER            = ../apidocs/common/header.html
+HTML_FOOTER            = ../apidocs/common/footer.html
+HTML_STYLESHEET        = ../apidocs/common/doxygen.css
+HTML_ALIGN_MEMBERS     = YES
+GENERATE_HTMLHELP      = NO
+CHM_FILE               = 
+HHC_LOCATION           = 
+GENERATE_CHI           = NO
+BINARY_TOC             = NO
+TOC_EXPAND             = NO
+DISABLE_INDEX          = YES
+ENUM_VALUES_PER_LINE   = 4
+GENERATE_TREEVIEW      = NO
+TREEVIEW_WIDTH         = 250
+GENERATE_LATEX         = NO
+LATEX_OUTPUT           = 
+LATEX_CMD_NAME         = latex
+MAKEINDEX_CMD_NAME     = makeindex
+COMPACT_LATEX          = NO
+PAPER_TYPE             = a4wide
+EXTRA_PACKAGES         = 
+LATEX_HEADER           = 
+PDF_HYPERLINKS         = NO
+USE_PDFLATEX           = NO
+LATEX_BATCHMODE        = NO
+LATEX_HIDE_INDICES     = NO
+GENERATE_RTF           = NO
+RTF_OUTPUT             = 
+COMPACT_RTF            = NO
+RTF_HYPERLINKS         = NO
+RTF_STYLESHEET_FILE    = 
+RTF_EXTENSIONS_FILE    = 
+GENERATE_MAN           = NO
+MAN_OUTPUT             = 
+MAN_EXTENSION          = .kde3
+MAN_LINKS              = YES
+GENERATE_XML           = NO
+XML_OUTPUT             = xml
+XML_SCHEMA             = 
+XML_DTD                = 
+XML_PROGRAMLISTING     = NO
+GENERATE_AUTOGEN_DEF   = NO
+GENERATE_PERLMOD       = NO
+PERLMOD_LATEX          = NO
+PERLMOD_PRETTY         = YES
+PERLMOD_MAKEVAR_PREFIX = 
+ENABLE_PREPROCESSING   = YES
+SEARCH_INCLUDES        = YES
+INCLUDE_PATH           = 
+INCLUDE_FILE_PATTERNS  = 
+PREDEFINED             = QT_VERSION=320 \
+                         __cplusplus \
+                         Q_WS_X11
+EXPAND_AS_DEFINED      = 
+SKIP_FUNCTION_MACROS   = YES
 ** Diff limit reached (max: 250 lines) **
ed5e85d7 2010-01-01 14:06:03 tpearson
Update libtool and ltmain to handle newest versions

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1068663 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M cvs.sh
M libtool.m4.in
M ltmain.sh
 ** Diff limit reached (max: 250 lines) **
8176302f 2010-01-02 15:39:46 tpearson
Run doxygen -u Doxyfile.global as suggested by doxygen
* Updates configuration, adds comments, and gets rid of annoying doxygen warnings

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1069180 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M Doxyfile.global
 ** Diff limit reached (max: 250 lines) **
85405db9 2010-01-06 00:05:05 tpearson
Fixed remaining GPL address zip codes


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1070598 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M missing
 ** Diff limit reached (max: 250 lines) **
89e3d5dd 2010-01-09 03:45:37 tpearson
Added /opt/kde3 to the extractrc path to handle usual Trinity compilation prefix


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1071990 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
73d79f3c 2010-01-10 19:40:42 tpearson
Detect OpenGL in new /usr/lib/mesa directory


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1072815 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
dbf6c6dc 2010-01-16 18:56:35 tpearson
Added new include directory


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1075919 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
9699bb84 2010-02-24 12:26:48 tpearson
Added this empty file for Automake 1.10+


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1095637 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
A config.rpath
 ** Diff limit reached (max: 250 lines) **
cabeb3b4 2010-03-24 19:37:16 tpearson
Automake fixups


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1107178 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
da15f97b 2010-04-20 19:06:13 tpearson
Part 1 of 2 of security patch for KDM [CVE-2010-0436]


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1117040 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
bb9dea09 2010-05-02 19:17:15 tpearson
Updated ltmain.sh to latest available to fix kdevelop


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1122030 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M ltmain.sh
 ** Diff limit reached (max: 250 lines) **
ca064b57 2010-06-15 04:02:41 tpearson
Automake fixes


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1138167 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
e868af34 2010-07-15 23:02:42 tpearson
Added preliminary Qt4 stuff that will hopefully be used in the future


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1150482 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
fd14d72f 2010-07-16 13:01:40 tpearson
Find the correct moc binary...


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1150780 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
4f9a36e2 2010-07-25 21:04:25 tpearson
First attempt at getting TQT integrated...


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1154613 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
M am_edit
 ** Diff limit reached (max: 250 lines) **
07f305db 2010-07-25 23:24:36 tpearson
Temporarily disable error and stop


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1154641 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
841d7763 2010-08-05 16:52:21 tpearson
TQt LDFLAGs propagation fix


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1159656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
629a19bd 2011-01-01 14:39:24 tpearson
Add fallback case


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1210706 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
d907da90 2011-01-05 15:08:20 tpearson
Fix up fallthrough tqt detection case


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1212130 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
cdbf13d2 2011-01-05 16:35:06 tpearson
Improve default case library handling


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1212154 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
03e0aaf7 2011-01-05 17:05:41 tpearson
TQt for Qt4 does not need the Qt3Support library


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1212160 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
91f5e37f 2011-01-06 14:14:12 tpearson
Fix Qt4 handling of threading


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1212392 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
6d6110ed 2011-01-12 16:14:59 tpearson
Fix TQt detection


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1214089 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
b6be43c6 2011-01-12 16:16:37 tpearson
Fix TQt UIC detection


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1214090 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
fedfe687 2011-01-13 00:12:20 tpearson
Use new tqt uic


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1214122 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
2a2c4cb1 2011-01-21 13:41:34 tpearson
Improve Qt4 detection


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1216186 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
06aafbb3 2011-05-15 14:30:02 tpearson
Fix TQt3 compilation with Autotools


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1232115 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
a0d96967 2011-05-16 12:55:59 tpearson
Fix up Autotools for TQt3/TQt4
This should repair compilation of non-core Autotools-based packages such as Adept


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1232280 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
M am_edit
 ** Diff limit reached (max: 250 lines) **
72af58a8 2011-05-17 00:44:46 tpearson
Fix dcopidl calling issues
Apply 06_autoconf2.64.diff from Debian basket 1.0.2-8 to fix .so files not being generated


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1232319 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M am_edit
M configure.in.min
 ** Diff limit reached (max: 250 lines) **
1a3a7b2b 2011-05-17 19:42:51 tpearson
Fix kde_check_include macro


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1232484 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
550e3699 2011-05-17 21:03:59 tpearson
Fix compilation of C programs


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1232490 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
11c1b82d 2011-05-29 12:02:12 tpearson
Fix rare FTBFS due to missing CXXFLAGS during configure check


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1234135 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
2317e04c 2011-05-29 20:15:04 tpearson
Fix admin-based Autotools configure check failures


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1234189 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
a7aeac7f 2011-05-30 01:43:35 tpearson
Fix Autotools-based FTBFS


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1234203 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
b8493052 2011-06-12 14:22:15 tpearson
Fix KDE_CHECK_HEADER in the Autotools admin/ directory


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1236345 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
754333b5 2011-06-16 21:00:42 tpearson
Fix TQt version detection


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1237071 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
992c8ad3 2011-06-17 17:25:55 tpearson
Fix TQt3 detection


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1237327 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
c6cec811 2011-06-18 17:43:28 tpearson
Fix admin/ Autotools build issues noticed in kdegraphics


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1237430 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
685bdf39 2011-06-25 14:08:03 tpearson
Fix Autotools KDE_CHECK_LIB macro


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1238336 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
30c7d0cb 2011-06-28 15:15:31 tpearson
Add QtNetwork to TQt4 linker flags


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1238731 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
3c1eeefb 2011-07-04 18:03:57 tpearson
Add macros required by kmymoney


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1239832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
5cf486bc 2011-07-30 15:54:18 tpearson
Add python2.7 to Python search paths


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1244127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
5c24dc18 2011-08-20 20:43:11 tpearson
Convert remaining references to kde3 (e.g. in paths) to trinity


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1248408 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M Doxyfile.global
M acinclude.m4.in
M cvs.sh
M debianrules
 ** Diff limit reached (max: 250 lines) **
ae9ba134 2011-09-06 17:21:06 tpearson
Add preliminary apidox support to CMake


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1251898 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
 ** Diff limit reached (max: 250 lines) **
7344e1ff 2011-09-06 17:22:29 tpearson
Fix apidox module name extraction


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1251899 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M doxygen.sh
 ** Diff limit reached (max: 250 lines) **
5a98346b 2011-10-01 23:08:27 tpearson
Add gtk/glibc checks to global acinclude.m4.in file


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1256728 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
4d0bb91e 2011-10-02 14:45:18 tpearson
Add AC_C_BIGENDIAN check to common acinclude.m4.in file


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1256945 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
e4edddce 2011-10-14 15:34:52 tpearson
Add AC_TAGCOLL2 macro to trinity common admin files


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1258922 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
cc134232 2011-11-04 16:08:13 Timothy Pearson
Add README file to admin/ directory
A README
 ** Diff limit reached (max: 250 lines) **
7f2ee5c8 2011-11-05 21:46:14 Timothy Pearson
Rename kde libraries to tde
M acinclude.m4.in
M am_edit
 ** Diff limit reached (max: 250 lines) **
6bb33797 2011-11-06 02:23:54 Timothy Pearson
Additional kde to tde renaming
M acinclude.m4.in
M am_edit
 ** Diff limit reached (max: 250 lines) **
10bae57b 2011-11-06 21:38:26 Timothy Pearson
Rename additional instances of KDE to TDE
M acinclude.m4.in
M am_edit
 ** Diff limit reached (max: 250 lines) **
4e7f0068 2011-11-08 01:04:12 Timothy Pearson
Prefer Qt3 files in tqt3 directories over files in qt3 directories
M acinclude.m4.in
M debianrules
 ** Diff limit reached (max: 250 lines) **
695f133c 2011-11-16 13:44:15 Timothy Pearson
Additional renaming of kde to tde
M acinclude.m4.in
M am_edit
M config.pl
M doxygen.sh
 ** Diff limit reached (max: 250 lines) **
21cb4a9d 2011-11-18 01:15:47 Timothy Pearson
Fix native TQt3 detection
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
26d642b2 2011-11-26 12:37:20 Timothy Pearson
Add LIB_QUI variable
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
822ba8d9 2011-12-03 21:19:04 Timothy Pearson
Fix some serial warnings
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
8dda14c1 2011-12-07 18:53:40 Timothy Pearson
Rename KDEHOME and KDEDIR
M acinclude.m4.in
M configure.in.bot.end
 ** Diff limit reached (max: 250 lines) **
b388be75 2012-02-01 14:12:05 Timothy Pearson
Fix FTBFS with TQt3
M acinclude.m4.in
M am_edit
 ** Diff limit reached (max: 250 lines) **
17581331 2012-02-02 01:27:29 Timothy Pearson
Fix additional FTBFS on TQt3
M am_edit
 ** Diff limit reached (max: 250 lines) **
fadd2e0f 2012-02-07 18:18:26 Timothy Pearson
Rename include subdirectory to tde
M acinclude.m4.in
M debianrules
 ** Diff limit reached (max: 250 lines) **
00b66ad7 2012-02-10 12:47:01 Timothy Pearson
Update Autotools tqt checks
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
03276f81 2012-02-11 13:32:12 Timothy Pearson
Update header checks
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
b5d31618 2012-02-14 21:12:31 Timothy Pearson
Update various qt function definitions and static methods for tqt3
M Doxyfile.global
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
05d69037 2012-02-16 16:11:08 Timothy Pearson
Fix FTBFS under qt3
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
1e5f9378 2012-02-26 14:24:14 Timothy Pearson
Rename kde-config to tde-config
M acinclude.m4.in
M configure.in.bot.end
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
eb886af3 2012-03-13 01:06:26 Timothy Pearson
Fix failure on missing AH_CHECK_HEADERS
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
2558f5bf 2012-03-26 14:59:54 Darrell Anderson
Fix test for PDF export support.
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
ee037c6f 2012-04-10 23:06:46 Darrell Anderson
Update final HTML install path so all modules are consistent.
M acinclude.m4.in
M debianrules
 ** Diff limit reached (max: 250 lines) **
a7f223eb 2012-04-14 16:03:17 Darrell Anderson
Update acinclude.m4.in to avoid "unary operator expected" output
messages caused by failure to parse new TDE version scheme string.
This resolves bug report 819.
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
4af57bf2 2012-05-19 00:41:49 Timothy Pearson
Remove irritating warning on configure
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
06098efa 2012-06-08 15:37:49 Darrell Anderson
Update XDG information in support of bug report 892.
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
69a6474a 2012-06-19 16:44:15 Timothy Pearson
Use tqt3 moc
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
ac762db5 2012-06-21 19:52:32 Timothy Pearson
Remove obsolete automake 1.5 check and fix branding
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
efdff81c 2012-09-14 20:10:44 Timothy Pearson
Allow build to proceed even if libhpi.so is not present
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
a84dfb91 2012-11-19 23:36:49 Timothy Pearson
Install icons to places instead of filesystems
M am_edit
 ** Diff limit reached (max: 250 lines) **
c1baf917 2012-11-27 05:15:35 Slávek Banko
Skip quilt cache during search configure.in.*
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
24a4b8ad 2012-11-27 05:16:26 Slávek Banko
Skip CMake files during the installation documentation
M am_edit
 ** Diff limit reached (max: 250 lines) **
f30a3aea 2013-01-20 00:01:34 Timothy Pearson
Rename KApplication to TDEApplication to avoid conflicts with KDE4
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
dacb3c25 2013-01-22 19:59:45 Timothy Pearson
Rename KInstance and KAboutData to avoid conflicts with KDE4
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
38cacb89 2013-01-26 13:14:07 Timothy Pearson
Rename a number of libraries and executables to avoid conflicts with KDE4
M acinclude.m4.in
M ltmain.sh
 ** Diff limit reached (max: 250 lines) **
b6d5b675 2013-01-27 00:56:44 Timothy Pearson
Rename a number of libraries and executables to avoid conflicts with KDE4
M acinclude.m4.in
M am_edit
 ** Diff limit reached (max: 250 lines) **
b2340915 2013-01-27 20:59:12 Timothy Pearson
Rename kiobuffer and KHTML
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
c5cef804 2013-01-29 23:26:28 Timothy Pearson
Rename a few build variables for overall consistency
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
39466b7b 2013-02-11 02:21:22 Timothy Pearson
Fix Python library detection on multiarch systems
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
50c59542 2013-02-15 21:52:17 Timothy Pearson
Rename additional header files to avoid conflicts with KDE4
M acinclude.m4.in
M am_edit
 ** Diff limit reached (max: 250 lines) **
8918209f 2013-02-18 13:30:28 Slávek Banko
Fix unintended rename of workfiles
M am_edit
 ** Diff limit reached (max: 250 lines) **
02e2842b 2013-02-18 22:27:00 Slávek Banko
Fix unintended rename of lnkscript
M ltmain.sh
 ** Diff limit reached (max: 250 lines) **
d3351c94 2013-02-20 16:21:00 Timothy Pearson
Rename KABC namespace
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
4027b878 2013-02-21 13:24:34 Timothy Pearson
Rename makekdewidgets
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
307fab5f 2013-04-18 17:24:59 Darrell Anderson
Update files and references in support of bug report 1446.
M acinclude.m4.in
M am_edit
 ** Diff limit reached (max: 250 lines) **
65ecce45 2013-05-23 18:25:19 Slávek Banko
Fix build with automake 1.13
M configure.in.min
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
cc75733b 2013-08-27 15:18:31 Slávek Banko
Fix FTBFS in parallel-tests with automake 1.13
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
b4d585c6 2013-08-29 18:02:26 Francois Andriot
Fix remaining FTBFS in parallel-tests with automake 1.13
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
6b7f7225 2013-09-03 12:47:33 Slávek Banko
Additional k => tde renaming and fixes
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
9f768663 2013-09-15 05:50:57 Slávek Banko
Add support for automake 1.14
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
43baf464 2013-12-23 05:35:51 Darrell Anderson
Fix unknown icon prefix message
M am_edit
 ** Diff limit reached (max: 250 lines) **
bae6da3f 2013-12-23 05:48:18 Slávek Banko
Rename kdewidgets => tdewidgets
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
8fd91e19 2014-03-27 02:54:10 Slávek Banko
Fix setting TQTDCOPIDLNG
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
b5c58c72 2014-04-16 21:55:12 Michele Calgaro
Update default C dialect to C99 standard. This resolves a FTBFS in tdemultimedia
when using libxine2-dev >=1.2.5-1.
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
c413f606 2014-05-26 18:34:20 Slávek Banko
Fix sqlite3 plugin detection
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
a9f6b4e8 2014-05-26 18:36:48 Slávek Banko
Update default pam service name to 'tde'
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
4813f61a 2014-05-26 19:54:30 Slávek Banko
Update default pam service name to 'tde'
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
92ee091d 2014-09-24 11:59:05 Slávek Banko
Fix remaining renaming knewstuff
M acinclude.m4.in
 ** Diff limit reached (max: 250 lines) **
4dd97fad 2014-09-28 21:25:48 Timothy Pearson
Rename kde.pot
M cvs.sh
 ** Diff limit reached (max: 250 lines) **
04db4606 2014-10-19 21:24:23 Slávek Banko
Fix automake icons installation

Signed-off-by: Slávek Banko <slavek.banko@...>
M am_edit
 ** Diff limit reached (max: 250 lines) **