From dfe289850f068f19ba4a83ab4e7e22a7e09c13c9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:21 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- khtml/configure.in.in | 57 --------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 khtml/configure.in.in (limited to 'khtml/configure.in.in') diff --git a/khtml/configure.in.in b/khtml/configure.in.in deleted file mode 100644 index b85dd8474..000000000 --- a/khtml/configure.in.in +++ /dev/null @@ -1,57 +0,0 @@ -AM_CONDITIONAL(DOJAVA, test "x$kde_use_qt_emb" != "xyes") - -AC_DEFUN([KDE_CHECK_LIBTHAI], -[ -AC_MSG_CHECKING([if libthai should be compiled in]) - AC_ARG_WITH(libthai, - AC_HELP_STRING( - [--with-libthai=yes], - [add Thai-language support from libthai library [default=no]] - ), - [ ac_libthai=$withval], - [ ac_libthai=no ] - ) - -if test "$ac_libthai" != "no"; then - AC_CACHE_VAL(kde_link_libthai, - [ - kde_ldflags_safe="$LDFLAGS" - kde_libs_safe="$LIBS" - - LDFLAGS="$LDFLAGS $USER_LDFLAGS" - LIBS="-lthai" - - AC_TRY_LINK([ - #include - #include - ], - [ - thchar_t c = 'C'; - int pos[1]; - size_t n = 12; - (void)th_brk(&c, pos, n); - ], - kde_link_libthai=yes, - kde_link_libthai=no - ) - - LDFLAGS=$kde_ldflags_safe - LIBS=$kde_libs_safe - ]) - - LIBTHAI="" - if test "$kde_link_libthai" = "no"; then - AC_MSG_ERROR([Can't find libthai.]) - else - AC_DEFINE(HAVE_LIBTHAI, 1, - [Defined if you have libthai and want to have it compiled in]) - LIBTHAI="-lthai" - fi - AC_SUBST(LIBTHAI) -fi -AC_MSG_RESULT($ac_libthai) -]) - -KDE_CHECK_LIBTHAI - -KDE_CHECK_HEADERS(valgrind/memcheck.h) -- cgit v1.2.1