lyricue-4.0.12/0000775000000000000000000000000013053456657010160 5ustar lyricue-4.0.12/Development.txt0000664000000000000000000002751413053456656013213 0ustar ----------------- DEBUGGING OPTIONS ----------------- If you run lyricue or lyricue_server with -d then debugging is on. Also by default debugging information is logged to ~/.local/share/lyricue/frontend.log and server-.log where is the portnumber that the server is listening on -------------------------------- NETWORK COMMUNICATIONS INTERFACE -------------------------------- This document describes the Client<->Server communications. By default the server opens a socket on port 2346 on localhost. The preview window opens a socket on port 2347 on localhost. The miniview window opens a socket on port 2347 on localhost. All communications are initiated by the client. The format for sending messages is :: Communications are not case sensitive other than filenames/db names Commands -------- Command - 'query' First parameter - database to query (lyricDb/mediaDb/bibleDb) Second parameter - SQL query Purpose - To do a SQL query and return results in JSON format Response - JSON formatted results Example - 'query:lyricDb:SELECT * FROM playlists' Command - 'osd' First parameter - slow,fast,time in milliseconds or left blank Second parameter - OSD text to display Purpose - To display scrolling text at bottom of screen Response - "" Example - 'osd:4000:sample text' Command - 'status' First parameter - previewon|previewoff|blank Second parameter - not used Purpose - To find out server width/height/font and tell server if previews wanted Response - "Status,W:,H:,F:" Example - 'status::' Command - 'reconfig' First parameter - not used Second parameter - not used Purpose - To reload the Configuration Response - "Configuration reloaded" Example - 'reconfig::' Command - 'backdrop' First parameter - image filename to load - or 'special;v4l' for live video Second parameter - not used Purpose - To change the background to the file given, First parameter - image filename to load, image must be in backgrounds directory Response - "Backdrop changed to " Example - 'backdrop:lds.xpm:' Command - 'blank' First parameter - image to use as background - leave blank if only clearing text Second parameter - not used Purpose - To blank the screen Response - "Screen blanked" Example - 'blank::' Command - 'change_to_db' First parameter - Bible database name Second parameter - not used Purpose - Change the bible database to a different version Response - "DB changed to " Example - 'change_to_db:nivDb:' Command - 'display' First parameter - 'p' Second parameter - pagenum to preview Purpose - Preview a single page without adding to playlist Response - "Displaying page <page>" Example - 'display:p:123' Command - 'preview' First parameter - 'header:author:copyright:nowrap' if 'nowrap' not included then assumes word wrapping Second parameter - 'text' Purpose - Show given text directly Example - 'preview:header:text:nowrap' Command - 'display' First parameter - 'current' Second parameter - '' Purpose - Redisplay the current page Response - "Displaying <title> page <page>" Example - 'display:current:' Command - 'display' First parameter - 'next_page' Second parameter - 'loop;parent_id' or '' Purpose - Display the next page. If the second parameter is 'loop' then loop to first page if currently on last page. If parent_id is set then loop that sublist Response - "Displaying <title> page <page>" Example - 'display:next_page:loop' Command - 'display' First parameter - 'prev_page' Second parameter - 'loop' or '' Purpose - Display the previous page. If the second parameter is 'loop' then loop to last page if currently on first page Response - "Displaying <title> page <page>" Example - 'display:prev_page:' Command - 'display' First parameter - 'next_song' Second parameter - not used Purpose - Display the next song in the playlist Response - "Displaying <title> page <page>" Example - 'display:next_song:' Command - 'display' First parameter - 'prev_song' Second parameter - not used Purpose - Display the previous song in the playlist Response - "Displaying <title> page <page>" Example - 'display:prev_song:' Command - 'display' First parameter - 'page' Second parameter - page number in current song Purpose - Jump to a particular page in a song Response - "Displaying <title> page <page>" Example - 'display:page:3' Command - 'display' First parameter - playlist item number Second parameter - not used Purpose - Jump to a particular item in the playlist Response - "Displaying <title> page <page>" Example - 'display:12:' Command - 'get' First parameter - playlist Second parameter - playlist name Purpose - Get the contents of a playlist Response - PLaylist contents Example - 'get:playlist:Main' Command - 'get' First parameter - playlists Second parameter - not used Purpose - Get a list of Playlists Response - List of playlists Example - 'get:playlists:' Command - 'get' First parameter - status Second parameter - not used Purpose - Get current server status Response - <current_playlist>:<current_item>:<current_point> Example - 'get:status:' Command - 'media' First parameter - pause Second parameter - not used Purpose - Pause playing video Response - Example - 'media:pause:' Command - 'media' First parameter - skip Second parameter - position in seconds Purpose - Skip to position in video Response - Example - 'media:skip:10' Command - 'bible' First parameter - available|maxchapter|maxverse|verse Second parameter - none|book|book chapter|verse reference Purpose - Control Bible access Response - Example - 'bible:maxverse:John 3 ------------------------- CONFIGURATION FILE FORMAT ------------------------- The configuration file is in /etc/lyricue/default.conf initially but used from ~/.share/local/lyricue/config2 for each user Following is a description of each possible line. 'Main' - Font used for main lyrics on server 'Header' - Font used for header section on server 'Footer' - Font used for footer section on server 'Colour' - Colour used for text on server (hex value) 'ShadowColour' - Colour used for text shadow (hex value) 'ShadowSize' - Num of Pixels that shadow is moved down/right of text 'Height' - Window height for server/interface 'Width' - Window width for server/interface 'OverscanH' - Size of border that is not written to in server 'OverscanW' - Size of border that is not written to in server 'Loop' - Boolean state of looping (ie. if you press next at the last page should it return to the first page) 'Audit' - Should song adds/removes be audited (for song usage tracking) 'DynamicPreview' - Boolean state of preview window 'MiniView' - Boolean state of miniview window 'Xinerama' - Boolean state of xinerama 'VerticalLocation' - Vertical text location (Top, Bottom, Centre) 'HorizontalLocation' - Horizontal text location (Left, Right, Centre) 'Justification' - Text justification (Left, Right, Centre) 'BGImage' - Filename of default background image 'SpecialSong' - Song that will sit at top of available songs always 'SpecialImage' - Image category that will be selected by default 'SpecialBack' - Background category that will be selected by default 'ImageDirectory = /home/cjd/Desktop 'BGDirectory = /home/cjd/.lyricue/backgrounds 'TrayIcons = 1 'DatabaseType = mysql 'DefBible' - Default bible setting 'Bible' - Description of bible + database name (ie. 'NIV;nivDb'), can be multiple 'App' - Command-line to be run from interface on server screen, can be multiple 'Preset1' - Sets preset text 'Preset2' - Sets preset text 'FrameLeft' - Size of left pane 'FrameRight' - Size of right pane 'FrameMain' - Size of main pane --------------- DATABASE FORMAT --------------- Database lyricDb ---------------- # Main lyrics table, contains list of all songs and details of each lyricMain ( id int(11) NOT NULL auto_increment, # Unique id of song title varchar(100) NOT NULL default '', # Title of song songnum int(11) default '0', # Song number from book book varchar(100) default '', # Song book artist varchar(100) default '', # Song artist written timestamp(14) NOT NULL, # Date when song was written keywords text, # Any keywords entered timestamp(14) NOT NULL, # Date when song was entered copyright varchar(100) default '', # Copyright infomation PRIMARY KEY (id) ) # Lyrics of individual pages, refers to lyricMain for song details page ( pageid int(11) NOT NULL auto_increment, # Unique id of page songid int(11) NOT NULL default '0', # Id of song which this is page of pagenum int(11) NOT NULL default '0', # Number of page in song pagetitle varchar(100) default '', # Name of page lyrics text, # Lyrics contained on this page PRIMARY KEY (pageid) ) # Contents of all playlists playlist ( playorder int(11) NOT NULL default '0', # Order in playlists for this item playlist int(11) NOT NULL default '1', # Playlist which this is contained in type varchar(4) default 'song', # Type of item. One of : 'song', # 'vers', 'play', 'imag', 'back' data varchar(50) NOT NULL default '', # Dependant on type field. If: # 'song' then pageid # 'vers' then verse numbers # 'play' then playlist id # 'imag' then image filename # 'back' then background filename transition int(11) default '0' # Set transition type PRIMARY KEY (playorder) ) # List of playlists playlists ( id int(11) NOT NULL default '0', # Unique playlist number # If set to -1 then 'ref' contains # current page in server title varchar(50) NOT NULL default '', # Title of playlist ref varchar(50) NOT NULL default '', # If it's a song playlist then songid PRIMARY KEY (id) ) # Page->image associations associations ( id int(11) NOT NULL auto_increment, # Unique id playlist int(11) NOT NULL default '0', # playorder this item is linked to imagename varchar(255) NOT NULL default '', # Imageid from mediaDb absoluteparent int(11) NOT NULL default '0', # Top-level Playlist (enables the clearing # of all associations from a playlist # without the need to go recursive). PRIMARY KEY (id) ) # Song usage auditing audit ( id int(24) NOT NULL auto_increment, # Unique id songid int(11) NOT NULL default '0', # Id of song playdate datetime NOT NULL default '0000-00-00 00:00:00', # When it was used PRIMARY KEY (id) ) Database: bibleDb ----------------- # Bible verses verse ( verseid int(11) not null auto_increment, # Unique verseid versenum int(11) not null, # Verse number chapternum int(11) not null, # Chapter number book varchar(30) not null, # Book title verse text, # Verse text PRIMARY KEY (verseid) ) Database: mediaDb ----------------- # Media Database media ( id int(10) unsigned NOT NULL auto_increment, # Unique media id category varchar(100) NOT NULL default '', # Main category subcategory varchar(100) NOT NULL default '', # Sub category type varchar(10) NOT NULL default '', # [img|bg] format varchar(10) NOT NULL default '', # file format insertedby varchar(100) NOT NULL default '', # Who added this insertdate datetime NOT NULL default '0000-00-00 00:00:00', # When they did it description varchar(100) default '', # Description of media data mediumblob, # The media contents PRIMARY KEY (id), UNIQUE KEY data (data(100),description,category,subcategory,type,format) ) ---------------- CODING STANDARDS ---------------- Source tidied by perltidy -bt=2 -pt=2 -sbt=2 -anl -bbb -ce ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������lyricue-4.0.12/aclocal.m4���������������������������������������������������������������������������0000664�0000000�0000000�00000230660�13053456657�012027� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# generated automatically by aclocal 1.15 -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) # Copyright (C) 1995-2002 Free Software Foundation, Inc. # Copyright (C) 2001-2003,2004 Red Hat, Inc. # # This file is free software, distributed under the terms of the GNU # General Public License. As a special exception to the GNU General # Public License, this file may be distributed as part of a program # that contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU Public License # but which still want to provide support for the GNU gettext functionality. # # Macro to add for using GNU gettext. # Ulrich Drepper <drepper@cygnus.com>, 1995, 1996 # # Modified to never use included libintl. # Owen Taylor <otaylor@redhat.com>, 12/15/1998 # # Major rework to remove unused code # Owen Taylor <otaylor@redhat.com>, 12/11/2002 # # Added better handling of ALL_LINGUAS from GNU gettext version # written by Bruno Haible, Owen Taylor <otaylor.redhat.com> 5/30/3002 # # Modified to require ngettext # Matthias Clasen <mclasen@redhat.com> 08/06/2004 # # We need this here as well, since someone might use autoconf-2.5x # to configure GLib then an older version to configure a package # using AM_GLIB_GNU_GETTEXT AC_PREREQ(2.53) dnl dnl We go to great lengths to make sure that aclocal won't dnl try to pull in the installed version of these macros dnl when running aclocal in the glib directory. dnl m4_copy([AC_DEFUN],[glib_DEFUN]) m4_copy([AC_REQUIRE],[glib_REQUIRE]) dnl dnl At the end, if we're not within glib, we'll define the public dnl definitions in terms of our private definitions. dnl # GLIB_LC_MESSAGES #-------------------- glib_DEFUN([GLIB_LC_MESSAGES], [AC_CHECK_HEADERS([locale.h]) if test $ac_cv_header_locale_h = yes; then AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES], am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) if test $am_cv_val_LC_MESSAGES = yes; then AC_DEFINE(HAVE_LC_MESSAGES, 1, [Define if your <locale.h> file defines LC_MESSAGES.]) fi fi]) # GLIB_PATH_PROG_WITH_TEST #---------------------------- dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], [# Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL(ac_cv_path_$1, [case "[$]$1" in /*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in ifelse([$5], , $PATH, [$5]); do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$]$1) else AC_MSG_RESULT(no) fi AC_SUBST($1)dnl ]) # GLIB_WITH_NLS #----------------- glib_DEFUN([GLIB_WITH_NLS], dnl NLS is obligatory [USE_NLS=yes AC_SUBST(USE_NLS) gt_cv_have_gettext=no CATOBJEXT=NONE XGETTEXT=: INTLLIBS= AC_CHECK_HEADER(libintl.h, [gt_cv_func_dgettext_libintl="no" libintl_extra_libs="" # # First check in libc # AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, [AC_TRY_LINK([ #include <libintl.h> ], [return !ngettext ("","", 1)], gt_cv_func_ngettext_libc=yes, gt_cv_func_ngettext_libc=no) ]) if test "$gt_cv_func_ngettext_libc" = "yes" ; then AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, [AC_TRY_LINK([ #include <libintl.h> ], [return !dgettext ("","")], gt_cv_func_dgettext_libc=yes, gt_cv_func_dgettext_libc=no) ]) fi if test "$gt_cv_func_ngettext_libc" = "yes" ; then AC_CHECK_FUNCS(bind_textdomain_codeset) fi # # If we don't have everything we want, check in libintl # if test "$gt_cv_func_dgettext_libc" != "yes" \ || test "$gt_cv_func_ngettext_libc" != "yes" \ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then AC_CHECK_LIB(intl, bindtextdomain, [AC_CHECK_LIB(intl, ngettext, [AC_CHECK_LIB(intl, dgettext, gt_cv_func_dgettext_libintl=yes)])]) if test "$gt_cv_func_dgettext_libintl" != "yes" ; then AC_MSG_CHECKING([if -liconv is needed to use gettext]) AC_MSG_RESULT([]) AC_CHECK_LIB(intl, ngettext, [AC_CHECK_LIB(intl, dcgettext, [gt_cv_func_dgettext_libintl=yes libintl_extra_libs=-liconv], :,-liconv)], :,-liconv) fi # # If we found libintl, then check in it for bind_textdomain_codeset(); # we'll prefer libc if neither have bind_textdomain_codeset(), # and both have dgettext and ngettext # if test "$gt_cv_func_dgettext_libintl" = "yes" ; then glib_save_LIBS="$LIBS" LIBS="$LIBS -lintl $libintl_extra_libs" unset ac_cv_func_bind_textdomain_codeset AC_CHECK_FUNCS(bind_textdomain_codeset) LIBS="$glib_save_LIBS" if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then gt_cv_func_dgettext_libc=no else if test "$gt_cv_func_dgettext_libc" = "yes" \ && test "$gt_cv_func_ngettext_libc" = "yes"; then gt_cv_func_dgettext_libintl=no fi fi fi fi if test "$gt_cv_func_dgettext_libc" = "yes" \ || test "$gt_cv_func_dgettext_libintl" = "yes"; then gt_cv_have_gettext=yes fi if test "$gt_cv_func_dgettext_libintl" = "yes"; then INTLLIBS="-lintl $libintl_extra_libs" fi if test "$gt_cv_have_gettext" = "yes"; then AC_DEFINE(HAVE_GETTEXT,1, [Define if the GNU gettext() function is already present or preinstalled.]) GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl if test "$MSGFMT" != "no"; then glib_save_LIBS="$LIBS" LIBS="$LIBS $INTLLIBS" AC_CHECK_FUNCS(dcgettext) MSGFMT_OPTS= AC_MSG_CHECKING([if msgfmt accepts -c]) GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: test 1.0\n" "PO-Revision-Date: 2007-02-15 12:01+0100\n" "Last-Translator: test <foo@bar.xx>\n" "Language-Team: C <LL@li.org>\n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" ], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) AC_SUBST(MSGFMT_OPTS) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr], [CATOBJEXT=.gmo DATADIRNAME=share], [case $host in *-*-solaris*) dnl On Solaris, if bind_textdomain_codeset is in libc, dnl GNU format message catalog is always supported, dnl since both are added to the libc all together. dnl Hence, we'd like to go with DATADIRNAME=share and dnl and CATOBJEXT=.gmo in this case. AC_CHECK_FUNC(bind_textdomain_codeset, [CATOBJEXT=.gmo DATADIRNAME=share], [CATOBJEXT=.mo DATADIRNAME=lib]) ;; *-*-openbsd*) CATOBJEXT=.mo DATADIRNAME=share ;; *) CATOBJEXT=.mo DATADIRNAME=lib ;; esac]) LIBS="$glib_save_LIBS" INSTOBJEXT=.mo else gt_cv_have_gettext=no fi fi ]) if test "$gt_cv_have_gettext" = "yes" ; then AC_DEFINE(ENABLE_NLS, 1, [always defined to indicate that i18n is enabled]) fi dnl Test whether we really found GNU xgettext. if test "$XGETTEXT" != ":"; then dnl If it is not GNU xgettext we define it as : so that the dnl Makefiles still can work. if $XGETTEXT --omit-header /dev/null 2> /dev/null; then : ; else AC_MSG_RESULT( [found xgettext program is not GNU xgettext; ignore it]) XGETTEXT=":" fi fi # We need to process the po/ directory. POSUB=po AC_OUTPUT_COMMANDS( [case "$CONFIG_FILES" in *po/Makefile.in*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile esac]) dnl These rules are solely for the distribution goal. While doing this dnl we only have to keep exactly one list of the available catalogs dnl in configure.ac. for lang in $ALL_LINGUAS; do GMOFILES="$GMOFILES $lang.gmo" POFILES="$POFILES $lang.po" done dnl Make all variables we use known to autoconf. AC_SUBST(CATALOGS) AC_SUBST(CATOBJEXT) AC_SUBST(DATADIRNAME) AC_SUBST(GMOFILES) AC_SUBST(INSTOBJEXT) AC_SUBST(INTLLIBS) AC_SUBST(PO_IN_DATADIR_TRUE) AC_SUBST(PO_IN_DATADIR_FALSE) AC_SUBST(POFILES) AC_SUBST(POSUB) ]) # AM_GLIB_GNU_GETTEXT # ------------------- # Do checks necessary for use of gettext. If a suitable implementation # of gettext is found in either in libintl or in the C library, # it will set INTLLIBS to the libraries needed for use of gettext # and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable # gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() # on various variables needed by the Makefile.in.in installed by # glib-gettextize. dnl AU_DEFUN([GLIB_GNU_GETTEXT], [AC_REQUIRE([AC_PROG_CC])dnl GLIB_LC_MESSAGES GLIB_WITH_NLS if test "$gt_cv_have_gettext" = "yes"; then if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else AC_MSG_CHECKING(for catalogs to be installed) NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then NEW_LINGUAS="$NEW_LINGUAS $presentlang" fi done LINGUAS=$NEW_LINGUAS AC_MSG_RESULT($LINGUAS) fi dnl Construct list of names of catalog files to be constructed. if test -n "$LINGUAS"; then for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done fi fi dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly dnl find the mkinstalldirs script in another subdir but ($top_srcdir). dnl Try to locate is. MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi AC_SUBST(MKINSTALLDIRS) dnl Generate list of files to be processed by xgettext which will dnl be included in po/Makefile. test -d po || mkdir po if test "x$srcdir" != "x."; then if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then posrcprefix="$srcdir/" else posrcprefix="../$srcdir/" fi else posrcprefix="../" fi rm -f po/POTFILES sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ < $srcdir/po/POTFILES.in > po/POTFILES ], [[$0: This macro is deprecated. You should use upstream gettext instead.]]) # AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) # ------------------------------- # Define VARIABLE to the location where catalog files will # be installed by po/Makefile. glib_DEFUN([GLIB_DEFINE_LOCALEDIR], [glib_REQUIRE([GLIB_GNU_GETTEXT])dnl glib_save_prefix="$prefix" glib_save_exec_prefix="$exec_prefix" glib_save_datarootdir="$datarootdir" test "x$prefix" = xNONE && prefix=$ac_default_prefix test "x$exec_prefix" = xNONE && exec_prefix=$prefix datarootdir=`eval echo "${datarootdir}"` if test "x$CATOBJEXT" = "x.mo" ; then localedir=`eval echo "${libdir}/locale"` else localedir=`eval echo "${datadir}/locale"` fi prefix="$glib_save_prefix" exec_prefix="$glib_save_exec_prefix" datarootdir="$glib_save_datarootdir" AC_DEFINE_UNQUOTED($1, "$localedir", [Define the location where the catalogs will be installed]) ]) dnl dnl Now the definitions that aclocal will find dnl ifdef(glib_configure_ac,[],[ AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) ])dnl # GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) # # Create a temporary file with TEST-FILE as its contents and pass the # file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with # 0 and perform ACTION-IF-FAIL for any other exit status. AC_DEFUN([GLIB_RUN_PROG], [cat >conftest.foo <<_ACEOF $2 _ACEOF if AC_RUN_LOG([$1 conftest.foo]); then m4_ifval([$3], [$3], [:]) m4_ifvaln([$4], [else $4])dnl echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD fi]) # nls.m4 serial 5 (gettext-0.18) dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software dnl Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000. dnl Bruno Haible <haible@clisp.cons.org>, 2000-2003. AC_PREREQ([2.50]) AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE([nls], [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT([$USE_NLS]) AC_SUBST([USE_NLS]) ]) dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- dnl serial 11 (pkg-config-0.29.1) dnl dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>. dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com> dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2 of the License, or dnl (at your option) any later version. dnl dnl This program is distributed in the hope that it will be useful, but dnl WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA dnl 02111-1307, USA. dnl dnl As a special exception to the GNU General Public License, if you dnl distribute this file as part of a program that contains a dnl configuration script generated by Autoconf, you may include it under dnl the same distribution terms that you use for the rest of that dnl program. dnl PKG_PREREQ(MIN-VERSION) dnl ----------------------- dnl Since: 0.29 dnl dnl Verify that the version of the pkg-config macros are at least dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's dnl installed version of pkg-config, this checks the developer's version dnl of pkg.m4 when generating configure. dnl dnl To ensure that this macro is defined, also add: dnl m4_ifndef([PKG_PREREQ], dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) dnl dnl See the "Since" comment for each macro you use to see what version dnl of the macros you require. m4_defun([PKG_PREREQ], [m4_define([PKG_MACROS_VERSION], [0.29.1]) m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) ])dnl PKG_PREREQ dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) dnl ---------------------------------- dnl Since: 0.16 dnl dnl Search for the pkg-config tool and set the PKG_CONFIG variable to dnl first found in the path. Checks that the version of pkg-config found dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is dnl used since that's the first version where most current features of dnl pkg-config existed. AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])dnl PKG_PROG_PKG_CONFIG dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------------------------------- dnl Since: 0.18 dnl dnl Check to see whether a particular set of modules exists. Similar to dnl PKG_CHECK_MODULES(), but does not set variables or print errors. dnl dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) dnl only at the first occurence in configure.ac, so if the first place dnl it's called might be skipped (such as if it is within an "if", you dnl have to call PKG_CHECK_EXISTS manually AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) dnl --------------------------------------------- dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting dnl pkg_failed based on the result. m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])dnl _PKG_CONFIG dnl _PKG_SHORT_ERRORS_SUPPORTED dnl --------------------------- dnl Internal check to see if pkg-config supports short errors. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])dnl _PKG_SHORT_ERRORS_SUPPORTED dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl -------------------------------------------------------------- dnl Since: 0.4.0 dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES might not happen, you should be sure to include an dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])dnl PKG_CHECK_MODULES dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl --------------------------------------------------------------------- dnl Since: 0.29 dnl dnl Checks for existence of MODULES and gathers its build flags with dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags dnl and VARIABLE-PREFIX_LIBS from --libs. dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to dnl include an explicit call to PKG_PROG_PKG_CONFIG in your dnl configure.ac. AC_DEFUN([PKG_CHECK_MODULES_STATIC], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl _save_PKG_CONFIG=$PKG_CONFIG PKG_CONFIG="$PKG_CONFIG --static" PKG_CHECK_MODULES($@) PKG_CONFIG=$_save_PKG_CONFIG[]dnl ])dnl PKG_CHECK_MODULES_STATIC dnl PKG_INSTALLDIR([DIRECTORY]) dnl ------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable pkgconfigdir as the location where a module dnl should install pkg-config .pc files. By default the directory is dnl $libdir/pkgconfig, but the default can be changed by passing dnl DIRECTORY. The user can override through the --with-pkgconfigdir dnl parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([pkgconfigdir], [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, [with_pkgconfigdir=]pkg_default) AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_INSTALLDIR dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) dnl -------------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable noarch_pkgconfigdir as the location where a dnl module should install arch-independent pkg-config .pc files. By dnl default the directory is $datadir/pkgconfig, but the default can be dnl changed by passing DIRECTORY. The user can override through the dnl --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([noarch-pkgconfigdir], [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, [with_noarch_pkgconfigdir=]pkg_default) AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_NOARCH_INSTALLDIR dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------- dnl Since: 0.28 dnl dnl Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl _PKG_CONFIG([$1], [variable="][$3]["], [$2]) AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl ])dnl PKG_CHECK_VAR AC_DEFUN([YELP_HELP_INIT], [ AC_REQUIRE([AC_PROG_LN_S]) m4_pattern_allow([AM_V_at]) m4_pattern_allow([AM_V_GEN]) m4_pattern_allow([AM_DEFAULT_VERBOSITY]) YELP_LC_MEDIA_LINKS=true YELP_LC_DIST=true for yelpopt in [$1]; do case $yelpopt in lc-media-links) YELP_LC_MEDIA_LINKS=true ;; no-lc-media-links) YELP_LC_MEDIA_LINKS= ;; lc-dist) YELP_LC_DIST=true ;; no-lc-dist) YELP_LC_DIST= ;; *) AC_MSG_ERROR([Unrecognized [YELP_HELP_INIT] option $yelpopt"]) ;; esac done; AC_SUBST([YELP_LC_MEDIA_LINKS]) AC_SUBST([YELP_LC_DIST]) AC_ARG_WITH([help-dir], AS_HELP_STRING([--with-help-dir=DIR], [path where help files are installed]),, [with_help_dir='${datadir}/help']) HELP_DIR="$with_help_dir" AC_SUBST(HELP_DIR) AC_ARG_VAR([ITSTOOL], [Path to the `itstool` command]) AC_CHECK_PROG([ITSTOOL], [itstool], [itstool]) if test x"$ITSTOOL" = x; then AC_MSG_ERROR([itstool not found]) fi AC_ARG_VAR([XMLLINT], [Path to the `xmllint` command]) AC_CHECK_PROG([XMLLINT], [xmllint], [xmllint]) if test x"$XMLLINT" = x; then AC_MSG_ERROR([xmllint not found]) fi YELP_HELP_RULES=' HELP_ID ?= HELP_POT ?= HELP_FILES ?= HELP_EXTRA ?= HELP_MEDIA ?= HELP_LINGUAS ?= _HELP_LINGUAS = $(if $(filter environment,$(origin LINGUAS)),$(filter $(LINGUAS),$(HELP_LINGUAS)),$(HELP_LINGUAS)) _HELP_POTFILE = $(if $(HELP_POT),$(HELP_POT),$(if $(HELP_ID),$(HELP_ID).pot)) _HELP_POFILES = $(if $(HELP_ID),$(foreach lc,$(_HELP_LINGUAS),$(lc)/$(lc).po)) _HELP_MOFILES = $(patsubst %.po,%.mo,$(_HELP_POFILES)) _HELP_C_FILES = $(foreach f,$(HELP_FILES),C/$(f)) _HELP_C_EXTRA = $(foreach f,$(HELP_EXTRA),C/$(f)) _HELP_C_MEDIA = $(foreach f,$(HELP_MEDIA),C/$(f)) _HELP_LC_FILES = $(foreach lc,$(_HELP_LINGUAS),$(foreach f,$(HELP_FILES),$(lc)/$(f))) _HELP_LC_STAMPS = $(foreach lc,$(_HELP_LINGUAS),$(lc)/$(lc).stamp) _HELP_DEFAULT_V = $(if $(AM_DEFAULT_VERBOSITY),$(AM_DEFAULT_VERBOSITY),1) _HELP_V = $(if $(V),$(V),$(_HELP_DEFAULT_V)) _HELP_LC_VERBOSE = $(_HELP_LC_VERBOSE_$(_HELP_V)) _HELP_LC_VERBOSE_ = $(_HELP_LC_VERBOSE_$(_HELP_DEFAULT_V)) _HELP_LC_VERBOSE_0 = @echo " GEN "$(dir [$]@); all: $(_HELP_C_FILES) $(_HELP_C_EXTRA) $(_HELP_C_MEDIA) $(_HELP_LC_FILES) $(_HELP_POFILES) .PHONY: pot pot: $(_HELP_POTFILE) $(_HELP_POTFILE): $(_HELP_C_FILES) $(_HELP_C_EXTRA) $(_HELP_C_MEDIA) $(AM_V_GEN)if test -d "C"; then d=; else d="$(srcdir)/"; fi; \ $(ITSTOOL) -o "[$]@" $(foreach f,$(_HELP_C_FILES),"$${d}$(f)") .PHONY: repo repo: $(_HELP_POTFILE) $(AM_V_at)for po in $(_HELP_POFILES); do \ if test "x[$](_HELP_V)" = "x0"; then echo " GEN $${po}"; fi; \ msgmerge -q -o "$${po}" "$${po}" "$(_HELP_POTFILE)"; \ done $(_HELP_POFILES): $(AM_V_at)if ! test -d "$(dir [$]@)"; then mkdir "$(dir [$]@)"; fi $(AM_V_at)if test ! -f "[$]@" -a -f "$(srcdir)/[$]@"; then cp "$(srcdir)/[$]@" "[$]@"; fi $(AM_V_GEN)if ! test -f "[$]@"; then \ (cd "$(dir [$]@)" && \ $(ITSTOOL) -o "$(notdir [$]@).tmp" $(_HELP_C_FILES) && \ mv "$(notdir [$]@).tmp" "$(notdir [$]@)"); \ else \ (cd "$(dir [$]@)" && \ $(ITSTOOL) -o "$(notdir [$]@).tmp" $(_HELP_C_FILES) && \ msgmerge -o "$(notdir [$]@)" "$(notdir [$]@)" "$(notdir [$]@).tmp" && \ rm "$(notdir [$]@).tmp"); \ fi $(_HELP_MOFILES): %.mo: %.po $(AM_V_at)if ! test -d "$(dir [$]@)"; then mkdir "$(dir [$]@)"; fi $(AM_V_GEN)msgfmt -o "[$]@" "$<" $(_HELP_LC_FILES): $(_HELP_LINGUAS) $(_HELP_LINGUAS): $(_HELP_LC_STAMPS) $(_HELP_LC_STAMPS): %.stamp: %.mo $(_HELP_LC_STAMPS): $(_HELP_C_FILES) $(_HELP_C_EXTRA) $(AM_V_at)if ! test -d "$(dir [$]@)"; then mkdir "$(dir [$]@)"; fi $(_HELP_LC_VERBOSE)if test -d "C"; then d="../"; else d="$(abs_srcdir)/"; fi; \ mo="$(dir [$]@)$(patsubst %/$(notdir [$]@),%,[$]@).mo"; \ if test -f "$${mo}"; then mo="../$${mo}"; else mo="$(abs_srcdir)/$${mo}"; fi; \ (cd "$(dir [$]@)" && $(ITSTOOL) -m "$${mo}" $(foreach f,$(_HELP_C_FILES),$${d}/$(f))) && \ touch "[$]@" .PHONY: clean-help mostlyclean-am: $(if $(HELP_ID),clean-help) clean-help: rm -f $(_HELP_LC_FILES) $(_HELP_LC_STAMPS) $(_HELP_MOFILES) EXTRA_DIST ?= EXTRA_DIST += $(_HELP_C_EXTRA) $(_HELP_C_MEDIA) EXTRA_DIST += $(if $(YELP_LC_DIST),$(foreach lc,$(HELP_LINGUAS),$(lc)/$(lc).stamp)) EXTRA_DIST += $(foreach lc,$(HELP_LINGUAS),$(lc)/$(lc).po) EXTRA_DIST += $(foreach f,$(HELP_MEDIA),$(foreach lc,$(HELP_LINGUAS),$(wildcard $(lc)/$(f)))) distdir: distdir-help-files distdir-help-files: $(_HELP_LC_FILES) @for lc in C $(if $(YELP_LC_DIST),$(HELP_LINGUAS)) ; do \ $(MKDIR_P) "$(distdir)/$$lc"; \ for file in $(HELP_FILES); do \ if test -f "$$lc/$$file"; then d=./; else d=$(srcdir)/; fi; \ cp -p "$$d$$lc/$$file" "$(distdir)/$$lc/" || exit 1; \ done; \ done; \ .PHONY: check-help check: check-help check-help: for lc in C $(_HELP_LINGUAS); do \ if test -d "$$lc"; \ then d=; \ xmlpath="$$lc"; \ else \ d="$(srcdir)/"; \ xmlpath="$$lc:$(srcdir)/$$lc"; \ fi; \ for page in $(HELP_FILES); do \ echo "$(XMLLINT) --noout --noent --path $$xmlpath --xinclude $$d$$lc/$$page"; \ $(XMLLINT) --noout --noent --path "$$xmlpath" --xinclude "$$d$$lc/$$page"; \ done; \ done .PHONY: install-help install-data-am: $(if $(HELP_ID),install-help) install-help: $(_HELP_LC_FILES) @for lc in C $(_HELP_LINGUAS); do \ $(mkinstalldirs) "$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)" || exit 1; \ done @for lc in C $(_HELP_LINGUAS); do for f in $(HELP_FILES); do \ if test -f "$$lc/$$f"; then d=; else d="$(srcdir)/"; fi; \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ if ! test -d "$$helpdir"; then $(mkinstalldirs) "$$helpdir"; fi; \ echo "$(INSTALL_DATA) $$d$$lc/$$f $$helpdir`basename $$f`"; \ $(INSTALL_DATA) "$$d$$lc/$$f" "$$helpdir`basename $$f`" || exit 1; \ done; done @for f in $(_HELP_C_EXTRA); do \ lc=`dirname "$$f"`; lc=`basename "$$lc"`; \ if test -f "$$f"; then d=; else d="$(srcdir)/"; fi; \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ if ! test -d "$$helpdir"; then $(mkinstalldirs) "$$helpdir"; fi; \ echo "$(INSTALL_DATA) $$d$$f $$helpdir`basename $$f`"; \ $(INSTALL_DATA) "$$d$$f" "$$helpdir`basename $$f`" || exit 1; \ done @for f in $(HELP_MEDIA); do \ for lc in C $(_HELP_LINGUAS); do \ if test -f "$$lc$$f"; then d=; else d="$(srcdir)/"; fi; \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ mdir=`dirname "$$f"`; \ if test "x$mdir" = "x."; then mdir=""; fi; \ if ! test -d "$$helpdir$$mdir"; then $(mkinstalldirs) "$$helpdir$$mdir"; fi; \ if test -f "$$d$$lc/$$f"; then \ echo "$(INSTALL_DATA) $$d$$lc/$$f $$helpdir$$f"; \ $(INSTALL_DATA) "$$d$$lc/$$f" "$$helpdir$$f" || exit 1; \ elif test "x$$lc" != "xC"; then \ if test "x$(YELP_LC_MEDIA_LINKS)" != "x"; then \ echo "$(LN_S) -f $(HELP_DIR)/C/$(HELP_ID)/$$f $$helpdir$$f"; \ dname="$$f"; \ pars="../"; \ while test "$$dname" != "." -a "$$dname" != "/"; do \ pars="../$$pars"; \ dname=$$(dirname "$$dname"); \ done; \ $(LN_S) -f $$pars"C/$(HELP_ID)/$$f" "$$helpdir$$f" || exit 1; \ fi; \ fi; \ done; \ done .PHONY: uninstall-help uninstall-am: $(if $(HELP_ID),uninstall-help) uninstall-help: for lc in C $(_HELP_LINGUAS); do for f in $(HELP_FILES); do \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ echo "rm -f $$helpdir`basename $$f`"; \ rm -f "$$helpdir`basename $$f`"; \ done; done @for f in $(_HELP_C_EXTRA); do \ lc=`dirname "$$f"`; lc=`basename "$$lc"`; \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ echo "rm -f $$helpdir`basename $$f`"; \ rm -f "$$helpdir`basename $$f`"; \ done @for f in $(HELP_MEDIA); do \ for lc in C $(_HELP_LINGUAS); do \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ echo "rm -f $$helpdir$$f"; \ rm -f "$$helpdir$$f"; \ done; \ done; ' AC_SUBST([YELP_HELP_RULES]) m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([YELP_HELP_RULES])]) ]) # Copyright (C) 2002-2014 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.15' 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.15], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2014 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], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each '.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542> Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: <http://www.gnu.org/software/coreutils/>. If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996-2014 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_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless 'enable' is passed literally. # For symmetry, 'disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], am_maintainer_other[ make rules and dependencies not useful (and sometimes confusing) to the casual installer])], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # -*- Autoconf -*- # Obsolete and "removed" macros, that must however still report explicit # error messages when used, to smooth transition. # # Copyright (C) 1996-2014 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. AC_DEFUN([AM_CONFIG_HEADER], [AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should use the 'AC][_CONFIG_HEADERS' macro instead.])dnl AC_CONFIG_HEADERS($@)]) AC_DEFUN([AM_PROG_CC_STDC], [AC_PROG_CC am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should simply use the 'AC][_PROG_CC' macro instead. Also, your code should no longer depend upon 'am_cv_prog_cc_stdc', but upon 'ac_cv_prog_cc_stdc'.])]) AC_DEFUN([AM_C_PROTOTYPES], [AC_FATAL([automatic de-ANSI-fication support has been removed])]) AU_DEFUN([fp_C_PROTOTYPES], [AM_C_PROTOTYPES]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2014 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-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar <conftest.tar]) AM_RUN_LOG([cat conftest.dir/file]) 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([m4/intltool.m4]) m4_include([m4/libtool.m4]) m4_include([m4/ltoptions.m4]) m4_include([m4/ltsugar.m4]) m4_include([m4/ltversion.m4]) m4_include([m4/lt~obsolete.m4]) ��������������������������������������������������������������������������������lyricue-4.0.12/song_template.txt��������������������������������������������������������������������0000664�0000000�0000000�00000000452�13053456656�013562� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Name: <enter song name here> Book: <enter song book here> Number: <enter song number here> Artist: <enter song artist here> Keywords: <enter descriptive keywords here for searching on> <first page here> ----- ( start line with 2 or more dashes to signify new page ) <second page here> ----- <etc> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������lyricue-4.0.12/INSTALL������������������������������������������������������������������������������0000664�0000000�0000000�00000036332�13053456656�011217� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Installation Instructions ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `<wchar.h>' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf bug. Until the bug is fixed you can use this workaround: CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������lyricue-4.0.12/intltool-update.in�������������������������������������������������������������������0000664�0000000�0000000�00000000000�13053456657�013622� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������lyricue-4.0.12/lyricue.spec�������������������������������������������������������������������������0000664�0000000�0000000�00000006543�13053456656�012517� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# $Revision: 1.12 $, $Date: 2010/03/14 10:18:19 $ # TODO: # - Make sure display and remote subpackages can run without the client %include /usr/lib/rpm/macros.perl Summary: GNU Lyric Display System, client interface Name: lyricue Version: 3.5.5 Release: 1 License: GPL Group: X11/Applications/Graphics Source0: http://www.lyricue.org/archive/%{name}_%{version}.tar.gz # Source0-md5: 7276c53c70a3b4334f0d4cc2a7ba9539 URL: http://www.lyricue.org BuildRequires: gettext-devel BuildRequires: sed >= 4.0 BuildRequires: clutter-devel BuildRequires: clutter-gst-devel BuildRequires: clutter-gtk-devel BuildRequires: mysql-devel Requires: mysql Requires: perl-DBI Requires: perl-DBI-MySQL Requires: perl-Gtk2 >= 1.220 Requires: perl-Gtk2-GladeXML Requires: perl-URI BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) %description Lyricue is used to edit and display song lyrics and passages of text along with images and videos on a second screen/projector. It was designed for use at live events such as church services, concerts and seminars. %package display Summary: GNU Lyric Display System, display interface Group: X11/Applications/Graphics Obsoletes: lyricue-server %description display Component to handle action display and projection of slides. %package remote Summary: GNU Lyric Display System, remote control cli Group: Libraries %description remote Remote control CLI to control the projection display from any shell. %prep %setup -q #sed -e 's#po/es_ES#po/es#' -i Makefile #mv po/es{_ES,}.po %build %configure \ --prefix=%{_prefix} %{__make} %install rm -rf $RPM_BUILD_ROOT %{__make} install \ DESTDIR=$RPM_BUILD_ROOT %find_lang %{name} --with-gnome rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/apport rm -rf $RPM_BUILD_ROOT%{_datadir}/apport %clean rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(644,root,root,755) %doc %{_defaultdocdir}/%{name}* %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/*.conf %attr(755,root,root) %{_bindir}/%{name} %dir %{_datadir}/%{name} %{_datadir}/%{name}/* %{_desktopdir}/%{name}.desktop %files display %defattr(644,root,root,755) %attr(755,root,root) %{_bindir}/%{name}_display %{_desktopdir}/%{name}_display.desktop %files remote %defattr(644,root,root,755) %attr(755,root,root) %{_bindir}/%{name}_remote %define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`) %changelog * %{date} Lyricue Team <lds-devel@lists.sourceforge.net> All persons listed below can be reached at lds-devel@lists.sourceforge.net $Log: lyricue.spec,v $ Revision 1.12 2013/03/28 10:18:19 cjdebenh New specfile from Caleb Maclennan Revision 1.12 2010/03/14 10:18:19 cjdebenh Remove GnomeCanvas Support and fix OSD with clutter 0.8 Revision 1.11 2009/07/30 04:19:51 cjdebenh Move website references to lyricue.org Revision 1.10 2009/06/16 23:05:08 cjdebenh Better error reporting, handle locales better for preferences dialog and work on import db stuff Revision 1.9 2009/06/10 04:58:21 cjdebenh Move to 2.0.0 Revision 1.9 2009/06/10 04:27:52 cjdebenh Update numbering to 2.0.0 Revision 1.8 2009/04/22 04:27:52 cjdebenh Update numbering to 1.9.9 Revision 1.8 2009/22/04 02:18:22 cjdebenh Update for 1.9.9 release Revision 1.7 2008/10/03 02:18:22 cjdebenh Update for 1.9.8 release Revision 1.6 2007/11/12 03:40:57 cjdebenh Import spec file from Caleb Maclennan �������������������������������������������������������������������������������������������������������������������������������������������������������������lyricue-4.0.12/COPYING������������������������������������������������������������������������������0000664�0000000�0000000�00000104514�13053456656�011217� 0����������������������������������������������������������������������������������������������������ustar �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the program's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: <program> Copyright (C) <year> <name of author> This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>. The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>. ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������lyricue-4.0.12/ChangeLog����������������������������������������������������������������������������0000664�0000000�0000000�00000016213�13053456656�011734� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������2010-10-11 Chris Debenham <chris@adebenham.com> [76] Fix preview in add/edit song dialog 2010-10-11 Chris Debenham <chris@adebenham.com> [75] Remove ServerType setting as it is no longer used 2010-10-10 Chris Debenham <chris@adebenham.com> [74] Rebuild for lp 2010-10-10 Chris Debenham <chris@adebenham.com> [73] Don't rebuild changelog 2010-10-10 Chris Debenham <chris@adebenham.com> [72] Add changelog to bzr 2010-10-10 Launchpad Translations on behalf of chris-debenham [71] Launchpad automatic translations update. 2010-10-10 Chris Debenham <chris@adebenham.com> [70] Update version num to fix launchpad upload 2010-10-10 Chris Debenham <chris@adebenham.com> [69] More build changes 2010-10-10 Chris Debenham <chris@adebenham.com> [68] Increase epoch so will superceed 1:2.3.x 2010-10-10 Chris Debenham <chris@adebenham.com> [67] Fix building of releases 2010-10-10 Chris Debenham <chris@adebenham.com> [66] Change dependancies to conflict only with lyricue-cvs < 2.4 2010-10-10 Chris Debenham <chris@adebenham.com> [65] Update translation files 2010-10-10 Chris Debenham <chris@adebenham.com> [64] Add turkish 2010-10-09 Launchpad Translations on behalf of chris-debenham [63] Launchpad automatic translations update. 2010-10-09 Chris Debenham <chris@adebenham.com> [62] Fix dist 2010-10-09 Chris Debenham <chris@adebenham.com> [61] Fix control file 2010-10-09 Chris Debenham <chris@adebenham.com> [60] Packaging changes 2010-10-09 Chris Debenham <chris@adebenham.com> [59] Package build changes 2010-10-09 Chris Debenham <chris@adebenham.com> [58] Prepare for actual release of 3.0 2010-10-09 Chris Debenham <chris@adebenham.com> [57] Add changelog 2010-10-08 chris@adebenham.com [56] * Re-add locales * Don't complain if access.conf not setup 2010-10-05 chris@adebenham.com [55] * Add default items to applications menu to start/stop lyricue_display * Add option to lyricue_remote to close the server 2010-10-05 chris@adebenham.com [54] * Set process name for lyricue_display better * Turn off debug output by default (use '-d' to re-enable) 2010-09-27 chris@adebenham.com [53] Set process name to "Lyricue Display on port xxxx" 2010-09-27 chris@adebenham.com [52] Fix double-changing of background in preview 2010-09-27 chris@adebenham.com [51] * Fix looping not working * Fix clear-text function 2010-09-27 chris@adebenham.com [50] Fix DVD trying to play if you click 'blank' 2010-09-23 chris@adebenham.com [49] Enable live video backgrounds 2010-09-22 chris@adebenham.com [48] * Add lsdvd to dependancies * Report port number is process name * Fix crash when going back past first item 2010-09-20 chris@adebenham.com [47] Enable word-wrap by default for songs 2010-09-17 chris@adebenham.com [46] Add .desktop files 2010-09-17 chris@adebenham.com [45] Add desktop files (#LP640940) 2010-09-16 chris@adebenham.com [44] * Initial work at dvd support * Add preview window to edit/add song dialog 2010-09-15 chris@adebenham.com [43] Let lyricue_display use GeometryOverride if set 2010-09-14 chris@adebenham.com [42] Re-add lyricue_remote command 2010-09-14 chris@adebenham.com [41] Force writing of config to db every startup (LP#636731) 2010-09-14 chris@adebenham.com [40] * Get lyricue_display to reload config when saving prefs in lyricue * Implement OSD functionality 2010-09-12 chris@adebenham.com [39] * Change some install dependancies * Make interface work at 1024x600 2010-09-12 chris@adebenham.com [38] * Change some install dependancies * Make interface work at 1024x600 * Fix loading lyricue_display from apps menu * Save first config to database 2010-09-09 Chris Debenham <chris@adebenham.com> [37] Add diatheke to dependancies, remove lyricue-bible 2010-09-08 Chris Debenham <chris@adebenham.com> [36] * Fix status message to return proper screen size * Fix blank handling after preview 2010-09-08 Chris Debenham <chris@adebenham.com> [35] Fix screen blanking after showing a preview 2010-09-07 Chris Debenham <chris@adebenham.com> [34] Packaging change 2010-09-07 Chris Debenham <chris@adebenham.com> [33] Up version 2010-09-07 Chris Debenham <chris@adebenham.com> [32] Fix missing files 2010-09-07 Chris Debenham <chris@adebenham.com> [31] Add missing files 2010-09-07 Chris Debenham <chris@adebenham.com> [30] * Implement dbimage loading * Don't try to set the geometry if it is null * Make lyricue_display log to logfile/stderr 2010-09-06 Chris Debenham <chris@adebenham.com> [29] Update packaging 2010-09-06 Chris Debenham <chris@adebenham.com> [28] Changes to build system 2010-09-06 Chris Debenham <chris@adebenham.com> [27] * Make presentation import retry if fails * Store presentation temp files in /var/tmp instead of /tmp * Packaging changes 2010-09-05 Chris Debenham <chris@adebenham.com> [26] * Fixes for bible preview * Fix crash when blanking screen to database image * SEMI should be : 2010-09-04 Chris Debenham <chris@adebenham.com> [25] * More fixes to preview command * Change debug messages for verse adding * Use mipmaps for glyph caches 2010-08-12 Chris Debenham <chris@adebenham.com> [24] Fix preview command 2010-08-11 Chris Debenham <chris@adebenham.com> [23] Fix crash on reconfigure 2010-08-10 Chris Debenham <chris@adebenham.com> [22] Add conflict for lyricue/lyricue-cvs packages 2010-08-10 Chris Debenham <chris@adebenham.com> [21] * Add conflict for lyricue/lyricue-cvs * Look for sql updates in right directory 2010-08-10 Chris Debenham <chris@adebenham.com> [20] re-sync lyricue interface 2010-08-10 Chris Debenham <chris@adebenham.com> [19] Remove extra debug output 2010-08-10 Chris Debenham <chris@adebenham.com> [18] Add support for sword bibles 2010-08-06 Chris Debenham <chris@adebenham.com> [17] Add dependancies for packaging 2010-08-06 Chris Debenham <chris@adebenham.com> [16] Update translation building 2010-08-06 Chris Debenham <chris@adebenham.com> [15] Add translations 2010-08-06 Chris Debenham <chris@adebenham.com> [14] Move lyricue interface into bzr as well 2010-08-05 Chris Debenham <chris@adebenham.com> [13] Packaging changes 2010-08-05 Chris Debenham <chris@adebenham.com> [12] Re-add makefile.in 2010-08-05 Chris Debenham <chris@adebenham.com> [11] Re-add makefile.in 2010-08-05 Chris Debenham <chris@adebenham.com> [10] Packaging changes 2010-08-05 Chris Debenham <chris@adebenham.com> [9] Packaging 2010-08-05 Chris Debenham <chris@adebenham.com> [8] Update build scripts 2010-08-05 Chris Debenham <chris@adebenham.com> [7] * Change transition handling to support turning transitions off * Add the ability to choose a default transition 2010-08-04 Chris Debenham <chris@adebenham.com> [6] More cleaning 2010-08-04 Chris Debenham <chris@adebenham.com> [5] Clean up bzr 2010-08-04 Chris Debenham <chris@adebenham.com> [4] * Remove unused main.c * Only update text if it has changed 2010-08-03 Chris Debenham <chris@adebenham.com> [3] Add i18n.h 2010-08-03 Chris Debenham <chris@adebenham.com> [2] Initial import 2010-08-03 Chris Debenham <chris@adebenham.com> [1] Initial import �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������lyricue-4.0.12/Makefile.in��������������������������������������������������������������������������0000664�0000000�0000000�00000072647�13053456657�012245� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(lyricuedocdir)" DATA = $(lyricuedoc_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/build-aux/compile \ $(top_srcdir)/build-aux/config.guess \ $(top_srcdir)/build-aux/config.sub \ $(top_srcdir)/build-aux/install-sh \ $(top_srcdir)/build-aux/ltmain.sh \ $(top_srcdir)/build-aux/missing AUTHORS COPYING ChangeLog \ INSTALL NEWS README TODO build-aux/compile \ build-aux/config.guess build-aux/config.sub \ build-aux/install-sh build-aux/ltmain.sh build-aux/missing \ mkinstalldirs DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AVAHIGLIB_CFLAGS = @AVAHIGLIB_CFLAGS@ AVAHIGLIB_LIBS = @AVAHIGLIB_LIBS@ AVAHI_CFLAGS = @AVAHI_CFLAGS@ AVAHI_LIBS = @AVAHI_LIBS@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLUTTERGST_CFLAGS = @CLUTTERGST_CFLAGS@ CLUTTERGST_LIBS = @CLUTTERGST_LIBS@ CLUTTERGTK_CFLAGS = @CLUTTERGTK_CFLAGS@ CLUTTERGTK_LIBS = @CLUTTERGTK_LIBS@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@ CLUTTER_LIBS = @CLUTTER_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ HELP_DIR = @HELP_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ ITSTOOL = @ITSTOOL@ JSONGLIB_CFLAGS = @JSONGLIB_CFLAGS@ JSONGLIB_LIBS = @JSONGLIB_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XMLLINT = @XMLLINT@ YELP_LC_DIST = @YELP_LC_DIST@ YELP_LC_MEDIA_LINKS = @YELP_LC_MEDIA_LINKS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src po data help lyricuedocdir = $(docdir) lyricuedoc_DATA = \ README\ COPYING\ AUTHORS\ ChangeLog\ NEWS \ Development.txt \ song_template.txt \ sample_song.xml INTLTOOL_FILES = intltool-extract.in \ intltool-merge.in \ intltool-update.in EXTRA_DIST = $(lyricuedoc_DATA) \ $(INTLTOOL_FILES) DISTCLEANFILES = intltool-extract \ intltool-merge \ intltool-update \ po/.intltool-merge-cache all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-lyricuedocDATA: $(lyricuedoc_DATA) @$(NORMAL_INSTALL) @list='$(lyricuedoc_DATA)'; test -n "$(lyricuedocdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(lyricuedocdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(lyricuedocdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(lyricuedocdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(lyricuedocdir)" || exit $$?; \ done uninstall-lyricuedocDATA: @$(NORMAL_UNINSTALL) @list='$(lyricuedoc_DATA)'; test -n "$(lyricuedocdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(lyricuedocdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(lyricuedocdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr \ distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-lyricuedocDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-lyricuedocDATA .MAKE: $(am__recursive_targets) all install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ clean-libtool cscope cscopelist-am ctags ctags-am dist \ dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ dist-xz dist-zip distcheck distclean distclean-generic \ distclean-hdr distclean-libtool distclean-tags distcleancheck \ distdir distuninstallcheck dvi dvi-am html html-am info \ info-am install install-am install-data install-data-am \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-lyricuedocDATA install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-lyricuedocDATA .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: �����������������������������������������������������������������������������������������lyricue-4.0.12/help/��������������������������������������������������������������������������������0000775�0000000�0000000�00000000000�13053456657�011110� 5����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������lyricue-4.0.12/help/Makefile.in���������������������������������������������������������������������0000664�0000000�0000000�00000034262�13053456657�013164� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = help ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AVAHIGLIB_CFLAGS = @AVAHIGLIB_CFLAGS@ AVAHIGLIB_LIBS = @AVAHIGLIB_LIBS@ AVAHI_CFLAGS = @AVAHI_CFLAGS@ AVAHI_LIBS = @AVAHI_LIBS@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLUTTERGST_CFLAGS = @CLUTTERGST_CFLAGS@ CLUTTERGST_LIBS = @CLUTTERGST_LIBS@ CLUTTERGTK_CFLAGS = @CLUTTERGTK_CFLAGS@ CLUTTERGTK_LIBS = @CLUTTERGTK_LIBS@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@ CLUTTER_LIBS = @CLUTTER_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ HELP_DIR = @HELP_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ ITSTOOL = @ITSTOOL@ JSONGLIB_CFLAGS = @JSONGLIB_CFLAGS@ JSONGLIB_LIBS = @JSONGLIB_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XMLLINT = @XMLLINT@ YELP_LC_DIST = @YELP_LC_DIST@ YELP_LC_MEDIA_LINKS = @YELP_LC_MEDIA_LINKS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ HELP_ID = lyricue HELP_FILES = index.docbook HELP_MEDIA = \ figures/apt.jpg \ figures/docs-add-song.jpg \ figures/docs-bible-import.jpg \ figures/docs-import-songs.jpg \ figures/docs-import-songs-select.jpg \ figures/docs-main-bgs.jpg \ figures/docs-main-bible.jpg \ figures/docs-main-imgs_0.jpg \ figures/docs-main-playlist_0.jpg \ figures/docs-main-playlists.jpg \ figures/docs-main-previews.jpg \ figures/docs-main-sections.jpg \ figures/docs-main-songs.jpg \ figures/docs-main-trans.jpg \ figures/docs-wizard-confirm.jpg \ figures/docs-wizard-db.jpg \ figures/docs-wizard-dirs.jpg \ figures/docs-wizard-fonts.jpg \ figures/docs-wizard-intro.jpg \ figures/docs-wizard-pg6.jpg \ figures/docs-wizard-proj.jpg \ figures/lyricue.png \ figures/multi-machine-setup.png \ figures/sources.jpg all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu help/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu help/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile @YELP_HELP_RULES@ #HELP_LINGUAS = # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������lyricue-4.0.12/help/C/������������������������������������������������������������������������������0000775�0000000�0000000�00000000000�13053456656�011271� 5����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������lyricue-4.0.12/help/C/index.docbook�����������������������������������������������������������������0000664�0000000�0000000�00000130032�13053456656�013741� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> <book id ="index" lang="en"> <bookinfo> <title>Lyricue User Guide Chris Debenham 2013 2010-2013 1.0 Lyricue is free and open-source application that is used to edit/display song lyrics and passages of text along with images and videos on a second screen/projector. It was designed for use at live events such as church services, concerts and seminars. Introduction Welcome to the documentation for Lyricue The current version of this document can be seen at http://www.lyricue.org/documentation (unless you are already there, in which case this is the most recent version) Installation Current Version: 4.0.4-1 The easiest way to download/install is using the PPA repository for Ubuntu To do this open a terminal and run the following commands. sudo apt-add-repository ppa:chris-debenham/lyricue sudo apt-get update sudo apt-get install lyricue If you are not running Ubuntu then choose the release series that is the closest match to your system or install from source Source package: lyricue_4.0.4-1.orig.tar.gz
Manual Installation For installation of Lyricue on non-debian based distributions follow these 4 easy steps. Note: If you wish to upgrade the process is exactly the same Make sure you have mysql and perl installed Lyricue is written in perl and holds all its data in two mysql databases so you will require perl/mysql to be installed. To download these go to http://www.perl.com and http://www.mysql.com or just install them from your distributions install disks. Lyricue also requires a few perl modules such as Gtk2, Clutter and DBI. These may already be installed or you can install them from CPAN or your install disks. Download the main Lyricue program Lyricue is available at http://www.lyricue.org/downloads Download the source package which will be named lyricue_<version>.tar.gz where '<version>' is the current version. Extract the files To extract the main program run: tar xvfz lyricue_<version>.tar.gz Install using './configure' and 'make' Change into the directory that was created by tar then run: $ ./configure $ make $ make install This script will install the program in /usr/bin with the shared components in /usr/share/lyricue and default settings in /etc/lyricue
First-run Wizard To load the interface run 'lyricue' or select 'Lyricue' from the Applications menu. On first load it will bring up the 'First-run Wizard'. This dialog will step you through the process of setting up Lyricue to run If you have already set up Lyricue it will skip straight to the main screen   Click 'Forward' to advance through the wizard
First-run Wizard - Login The first thing to configure is the administrators mysql login which will be used to create the nessecary database tables and the 'lyricue' mysql user. The user chosen must have full access to the database.  This user is normally called 'root' and has no password by default. Note: this user is different to the 'root' login on the computer
First-run Wizard - Projector Settings Here you can do some basic setup of how the projector screen will look. Setting the width and height will help with ensuring the previews look correct. You can set where the main lyrics will display on the screen (at the top/centre/bottom and left/centre/right of the screen) as well as what the text justification is.
First-run Wizard - Font Settings Here you can specify the fonts used by the header, lyrics and footer
First-run Wizard - Image Directories From here you can specify where the images and videos used by lyricue are stored. Each sub-directory of whatever location you specify will show up as a seperate 'category' in Lyricue You can set the directories as the same or seperate locations.  This can help you to keep images and videos unsuitable for use as backgrounds seperate. If you are going to be running the interface and the server on separate machines these paths must be the same and accessible on both machines.  Sharing the directory as an NFS share is the best method of doing this.  It is recommended that the directory be shared from the server machine if you are going to be using videos.
First-run Wizard - Most-used Items Here you can enter the items that you want to always appear at the top of their respective lists. You can also select your default bible translation.
First-run Wizard - Confirm You are all done. Now you can continue to the main interface of Lyricue
Lyricue interface To load the interface run 'lyricue' or select 'Lyricue' from the Applications menu. If you are running on a dual-screen system then run this on your primary display (not the one connected to the projector) The main interface is broken up into four areas. Menu and toolbar Sources Playlist Previews When Lyricue is loaded it also adds a group of five buttons to your notification tray which provide quick control of the server even if you are not showing the main interface at that time. The first thing you will want to do is choose a playlist
Playlist Selection If no playlist is loaded the middle section shows a list of available playlists.From here you can create new playlists and load,rename or delete existing playlists.Double-clicking on a playlist will load it or you can select the playlist then click "Load"
Using the Playlist At the top of the playlist area is the name of the current playlist and a 'refresh' icon. Underneath that the playlist is shown as a hierarchical tree view. Wherever you see a small triangle at the start of a line you can click on it to expand that item. At the bottom of the playlist area are a number of toolbar buttons. They are Move selected item up Move selected item down Remove selected item from playlist Add a new sublist You can also right-click on an item in the playlist to bring up a context-sensitive menu. Duplicate Item Remove from Playlist Refresh Playlist Invert Line Display Loop this playlist item Associate background Dis-associate background Move to sublist
Using the Sources area Lyricue can source playlist items from a variety of locations.To assist in adding to/modifying items on the playlist the 'Sources' area is split into five tabs.
Songs This tab contains a list of all songs that are currently available to add to the playlist. At the top of the tab is the search entry.  Any text you enter here will cause the playlist to be filtered to only show songs containing those characters in their title, or in the first line of the song (this is helpful for when you can't remember the proper name of the song but can remember how it starts) You can click the Search button to bring up a dialog from which you can search the lyrics themselves as well At the bottom of the tab are three buttons which allow you to create a new song, edit the currently selected song or add the selected songs to the playlist. You can also right-click on an item to bring up a context-sensitive menu which provides the following options Edit Song Delete Song Refresh List Order - Songbook -> No. / Order - Songbook -> Name. Add to playlist
Backgrounds The Backgrounds tab displays a list of available images and videos that can be used as backgrounds which are displayed behind the text on the screen. At the top of the area is a selection box that can be used to choose which category you want to view. Once a category is selected the main area will fill with a list of all available files.  Images will display a thumbnail of the image while videos will just show the filename. You can double-click on an item to set it as the current background immediately. You can also drag an item onto a playlist item in order to associate the file with the target playlist item.  Then whenever that playlist item is shown the background will be automatically changed at the same time. At the bottom of the screen is the Background preview area which shows the current and previous background.  This can be helpful for quickly changing the background back.  
Images The Images tab displays a list of available images and videos that can be used as standalone items in the playlist. At the top of the area is a selection box that can be used to choose which category you want to view. Once a category is selected the main area will fill with a list of all available files. Images will display a thumbnail of the image while videos will just show the filename. You can click the 'Add to Playlist' button to that the selected item to the end of the current playlist. You can also drag an item onto a playlist to add it. When an image/video is added as a standalone item it will clear any text on the screen when shown.
Bible The Bible tab is used to add bible verses to the playlist. To use you can either type a verse directly or click on the provided buttons to browse for a certain verse. If you type a verse directly it will automatically complete the bookname to the first matching book (ie - enter 'Ge' and it will assume you mean Genesis) Verses should be entered in the format 'book chapter:startverse-endverse' You can also click the buttons under the verse-entry area to select a book/chapter and verse. On either side of the verse-entry area there is a left and right arrow.  Clicking on either of these will cause Lyricue to automatically go back/forward one verse.  When this is done it will also trim the number of verses shown to ensure they all fit on the screen. At the bottom of the Bible tab are three buttons Add to playlist Show Autoshow You can change the current bible translation viewed/displayed via the "Bibles" menu.
Transitions The transistions tab allows you to change how text is changed on the screen. When you select an item in the playlist this tab will update to show whatever transition is currently applied to that item. There are four transitions available: The default transition is 'Fade' which will cause the text to fade from one page to the next The Second transition is 'Slide Text' which will cause text to slide in/out of the screen in the direction specified by the buttons which will be display in this tab once this option is chosen. The third transition is 'Wipe to Black'  which does nothing currently The final transition is 'Rotate Text' which will cause the text to rotate around the axis specified by the buttons which will be displayed in this tab once this option is chosen. You can choose to apply the selected transition to only the selected item, or to the entire playlist in one go. When applied to a selected item it will also apply to any children of that item.  This means you can set the transition type for a song and it will apply for all pages in that song
Using preview area The preview area contains four sections: Preview window Miniview windows Quick update area On screen display area The preview window contains a small preview of the item you click on in the playlist. It can be used to check how a playlist item will look, if the text will fit and/or how the background/image looks. The miniview window contains a duplicate of whatever is being displayed on the server. This is helpful when the projector screen is not easily visible. If there are multiple projector screens then multiple miniviews will be displayed Only the first three seconds of videos will be played in the preview or miniview as performance is impacted too much. The preview and miniview can be enabled/disabled in the preferences dialog or by clicking on the checkbox above each section The quick update area is used to make immediate changes to a song, or to quickly put any text on the screen.  When a playlist item is selected it's contents will be copied into this area. The area is editable and so you can edit a page and click 'Save' to quickly correct errors in the page. The 'Save Copy' button is used to save the changes in a copy of the page - allowing you to modify a page for just this playlist (rather than updating the song itself for all future uses) You can also put any text you want in this area and click 'Show' to quickly show that text on the server screen. Finally the OSD area can be used to type a quick message which will be scrolled across the bottom of the displays
Adding content Lyricue supports the display of songs, images, videos, bible verses and text.This content can come from a variety of sources.Songs and text are stored in a database allowing for quick searching, display and updates.You can either type each song in individually, import one of the provided song packages or import individual songs that have been exported from other lyric applications.Image and videos can come from anywhere and sit on the computer.Bible verses can be provided by the Sword project or in Lyricue's own database format
Adding an individual song   To add a new song you can either choose 'Add Song' from the 'Edit' menu or click 'New' in the song tab. This will bring up a dialog at which you can enter a new song or import a single song.
Creating a new song The new song dialog allows you to create a new song by simply filling in the text fields with the relevant information. You can add/remove pages by the buttons on the right You can also show the page currently being currently edited on the server, or preview screen. There is also the option to spell check your text and 'Honourise' the song (which changes 'jesus' to 'Jesus' and similar common capitalisations) The check box 'Audit Song' allows you to enable/disable auditing of this song to control if its usage will show up in the reports (these reports can be generated by precue) There is a menu labelled 'Insert preset copyright' which will display a list of pre-made copyright strings (These are set in ~/.local/share/lyricue/config2).  When one is selected a string such as 'Preset:1' will be added to the 'Copyright' field.  When this song is displayed on the server this string will be replaced with whatever you have specified for that preset.  This is helpful to add the same copyright information to all songs - and if the copyright changes you don't have to edit all the songs again.  For example 'Used with permission CCLI 999999' Once the song is finished click 'Save and Close' to save the new song and return to the main interface. If you decide not to save the new song click 'Cancel'
Importing a single song You can choose 'Import' from the file menu to import a file from any of the supported file formats. Currently Lyricue supports: Lyricue .xmlz format Old Lyricue .txt format Songbeamer .sng format Songselect .usr format Opwekking .opw format Opensong .html format Once you have chosen a suitable file this dialog will be filled with the information from that file.  At this point you can edit it as required and then save the new song
Importing songs The quickest way to add songs to Lyricue is to import a songlist from http://www.lyricue.org/songlists The importing of songs from other formats is done song-by-song on the 'Add song' screen. Then go to the 'File->Import Songlist' menu item. This will bring up the following screen At this screen you can select the previously downloaded file. Once you have accepted this you will be taken to the following screen from where you can choose which individual songs you wish to import. Once you have chosen the ones you want click OK to add them to your available songs
Bible Verses Lyricue can load bible verses from either via it's own SQL format, or any sword bible module
Sword Format Lyricue can use bible translations from the Sword project as long as you have a small utility called 'diatheke' installed.  If diatheke is installed any sword bibles installed will show up automatically without configuration. You may need to add/install the 'diatheke' tool from your package manager Sword bibles are also used by Bibletime and Gnomesword/Xiphos The most common method is to download from Crosswire.org. The Sword project provides a number of bible translations in a number of different languages. When downloading from there please use the 'Raw ZIP' download. Your distribution may also provide pre-made packages for some bible texts. In the case of Ubuntu and Debian the packages are named 'sword-text-*'. On other distributions they may be named differently.
Lyricue Database Format Lyricue can import bibles in it's own SQL-based format. MySQL_create_bible_KJV.sql.gz - King James Version MySQL_create_bible_MES.sql.gz - The Message MySQL_create_bible_NIV.sql.gz - New International Version MySQL_create_bible_NIV_uk.sql.gz - New Internation Version - UK English MySQL_create_bible_NIRV.sql.gz - New International Readers Version MySQL_create_bible_NLT.sql.gz - New Living Translation MySQL_create_bible_NRSV.sql.gz - New Revised Standard Version MySQL_create_bible_GNT.sql.gz - Good News Translation MySQL_create_bible_NASB.sql.gz - New American Standard Bible
Installation from within Lyricue With the release of Lyricue 2.0 the option was introduced to install bibles from within the interface. To use select "Install New Bibles" from the "Bible" menu. From there you can import a Lyricue SQL format or Sword format bible that you have previously downloaded
How to install Sword format automatically Your distribution may also provide pre-made packages for some bible texts. In the case of Ubuntu and Debian the packages are named 'sword-text-*'. On other distributions they may be named differently. Install using your distributions usual package manager.  You will also need to ensure that the 'diatheke' package is installed.
How to install SQL format Manually To install a bible translation download one of the files listed below and then run gzip -dc bible.sql.gz | mysql -uroot -p Replace bible.sql.gz with the file you downloaded previously. This should ask for your mysql root user password then install the bible. The next time you run lyricue it will be in the list of available bibles. If your MySQL install does not require a password for the root user remove the -p from the command above.
How to install Sword format Manually To install a sword format manually run unzip bible.zip -d ~/.sword Replace bible.zip with the file you downloaded previously.  You will also need to ensure that the 'diatheke' utility is installed.
Importing Images, Backgrounds and Videos Importing images, backgrounds and videos is simply a matter of copying them into folders under your image/background directories.For example, if you set your Images directory to be /home/user/Pictures then any folders inside that folder would show up in Lyricue as categories.To create a new category you can create a new folder within /home/user/Pictures with the name that you can to give that category/group of images.To add images to a category you can simply copy any valid image file to one of these created folders. Videos are treated exactly the same as an image.The same applies for managing backgrounds.
Using the Server After configuring lyricue's interface, you should start up the server:
Starting the server manually By default there is a menu item under Applications labelled Lyricue Server. Click this to load the server.If such a menu item is not available open a terminal, drag it to your second monitor and type lyricue_server. Keep the mouse on that monitor until the server is up and running so that the window manager will place the lyricue server window on the screen where your mouse pointer is. A more long-term solution is creating a shortcut to lyricue server on your second monitor, pointing to /usr/bin/lyricue_display
Start the server automatically. It can be handy to have lyricue_server load automatically when the user logs in. This might be easier for unexperienced users. How this is done depends on your desktop environment. Generally you can edit ~/.xinitrc and add display=:0.1 /usr/bin/lyricue_display & to just above where your desktop is loaded (generally just above the last line) and then lyricue_server will automatically run on the second screen (for when you are using xinerama) when you login.
Keyboard shortcuts The server screen understands a number of keyboard shortcuts Left/Page Up - Go to the previous page Right/Page Down - Go to the next page Up/Prior - Go to the previous song Down/Next - Go to the next song 0/b - Blank the screen p - Pause any video Q - Quit the server
Advanced Tips
Controlling the server with global hotkeys Lyricue comes with a small utility called lyricue_remote If you bind keys to lyricue_remote with various command-line arguments in order to control the server. The main options are prev_page, next_page, prev_song, next_song and blank If you are using Gnome with the metacity window manager then run the following commands and those options will be bound to the keys F5, F6, F7. F8 and F9 respectively. This has the advantage of working even if the interface is not running #!/bin/sh gconftool-2 --set /apps/metacity/global_keybindings/run_command_1 --type String "F5" gconftool-2 --set /apps/metacity/global_keybindings/run_command_2 --type String "F6" gconftool-2 --set /apps/metacity/global_keybindings/run_command_3 --type String "F7" gconftool-2 --set /apps/metacity/global_keybindings/run_command_4 --type String "F8" gconftool-2 --set /apps/metacity/global_keybindings/run_command_5 --type String "F9" gconftool-2 --type string --set /apps/metacity/keybinding_commands/command_1 "lyricue_remote prev_page" gconftool-2 --type string --set /apps/metacity/keybinding_commands/command_2 "lyricue_remote next_page" gconftool-2 --type string --set /apps/metacity/keybinding_commands/command_3 "lyricue_remote prev_song" gconftool-2 --type string --set /apps/metacity/keybinding_commands/command_4 "lyricue_remote next_song" gconftool-2 --type string --set /apps/metacity/keybinding_commands/command_5 "lyricue_remote blank"
Running the server and interface on separate machines Lyricue supports running the interface and server on separate machines.For instance you can have a computer running the server connected to your projector and then display the interface on a separate computer sitting elsewhere. This can even work with running the interface on a wireless tabletpc, netbook or laptop.The easiest way to do this is to run both the interface and server on one computer, but use the X-forwarding capability in SSH to forward the interface from the server machine to the client machine.To do this you can run 'ssh -X user@server /usr/bin/lyricue' which will ssh to the host server as user and run the interface. The interface will come up on your local machine.The problem with doing it this way is that there is no way to add a file to the playlist that is stored on the local machine. This can make it difficult to do things such as importing presentations. The other option is to run the interface directly on the local machine. There are a few restrictions on this though. The lyricue package must be installed on both machines Both server and interface must be able to access the directories used for images/backgrounds The directory path of the images/backgrounds must be the same MySQL must be configured to listen on the network interface, not just locally The first thing to do is ensure that MySQL is setup for remote access as by default it is normally only setup for local access. MySQL should be setup/installed on the server (hostB).To do this check your /etc/mysql/my.cnf and ensure you don't have either of the following: bind-address = 127.0.0.1 skip-networking If either of these exist, then remove them and restart the mysql server. The next thing to do is to ensure that both machines can access the same image/background directories.To make this easier you should use the same username to login on both machines and share the home directory between computers. The easiest way to do this is via NFS.If you are planning on displaying videos it is strongly recommended that you share the directory from the server computer to the interface computer. There are many ways to do this, but the simplest is log into the server machine (hostB) to install nfs-kernel-server and edit /etc/exports. In that file add a line such as:/home/user *(rw,async)Then run exportfs -a to export that directory as an NFS shareNow go back to the interface computer (hostA) and mount that directory as your home directory.To do this edit /etc/fstab and add a line such as:hostB:/home/user /home/user nfs rw,bg,soft,async,intr 0 0That will mount the share from hostB over /home/userChange the server hostname and username as required.You should now restart the interface machine so that nothing is accessing the old home directory and the new home directory is mounted from NFS. Once the directory is shared between computers you can specify where the lyricue server and mysql server are located by adding command-line arguments when running lyricue using the '-r' option to say where the mysql server is running. For example run lyricue -r hostB on the interface computer and just lyricue_server on the server computer.
lyricue-4.0.12/help/C/figures/0000775000000000000000000000000013053456656012735 5ustar lyricue-4.0.12/help/C/figures/docs-wizard-dirs.jpg0000664000000000000000000011522113053456656016626 0ustar JFIFHHC  !"$"$C/" n !1"AQ#2STaeqs4BFU 3RV$56CDbt&78EWduv%GIXcr':!12AQaq"45BRSrb ?JX-:ons%(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPER}?Ja~^(G3ޏgPEYws%?Ml/vݾ21|@F /RPJiJP)JP)JP)JP)JP)JP)JP)JP)Jkku%Σn׹v%ZJ d%[}[(74oNҟ/Yv;ϱ^6LDmG%٭r$D JvXkBz>̄w($JIgO|[]oCznn:/g;X5)J)J)J*얼qgpm6c  ܶ !<-oqm#[r.hICФF;O:\KR]F֏Fݥ˝,sbҔ71&nvfF?٤nK,Ɏy !]AC!IZHDv58 . 8f)(ONC*RO^2Go7HŬԞC( gZOv zJGђ4վ3U5OEa%0>&wַ^"pvŬoqGp펕hRZOG!ֆХ(T y*3ٵ-]KvŋHm~d8Y-Sys$YYn"Sk).8D6VQvǵnfDKCkH_H܎| A."1p MթPFB {NМlD^g2CSQdy)A +OAqVΰoXZ8wg:[l&,}O[091hTKJnɢ-RVD[ii(?V[kn+ek  HJGAo|I29kٯjmԐX0~`96Wj V7 G|#[)#8H$$ dc2 ,@HL)IR6)9sӗ v'wt-Vf@8#Ť$a0H$r=U6RkͳzDnDN \;1FF0A3Z+k=p-0:bnC$xK 䌀p r 7OcF!p#C3!(U#8Vk%ƚ5M\-r:umAI!H!Cw׿ISxb|uݲTGJAܢ0|XdzTO~-?G[_~M%I34r 8#''sم:UXȈ%e 6=1#j2)ZorF娀2 Vma^6] ,Y%ڠ (2:4'J茶[/p>v]uݳ=~]{JMӪp6Tʸ- B]nVNp6TghQEH!i-:9leSN2sQd6Vdcq]{ҿDjj:?wl_^ұ!{gRYޛܞsIѕʽ;эEnj~ͦV4] HiKk] %[YuFƒ N<רlcpӒ/oRۜy+ I x*~桰^gh6.əE\JI(VP`'k6NћCd7tRژe$ZRI]3eiN%*\TfZT(*Q$O2M]M3Զ%-wDOʶT}q HoI^י; xxqQ߈r= KhmMIOFzM:rlDq؁R%#=xXG-H:^xq\ >R<'G⎗պ6զ4mE\INQj qXAF8N l˶s3؋-}Ԥe VR|4Ndj/H$ZYt<m8NЬ2pOƓҺ_;V['lAj?K;wlHݍz|PҋOcgdh}Y¹%V:Bלg*;kз~76oHL%nBsJQ 5.[q\vbeێ6H+.x %tӸ{K}QʖeJ$II𣅩 4E7Ƞ!i}tJ֚RKq\x0u|<+֦yuA #%]W()C8! gcvsD P#pRc7MCz=hL&J;|ǂ!`IӑǯQZsrЩ,tw%>9 >QVΤ/RDG4[mPk2J$ )i$'*QVIM.v~-Ƌ+~)PTS y(= [lfA\7ysd#e"-kRT!~h3:Wx)/G=2/acMu @rS@$/,r݊d1,v{}99-CPOl(<1xmĹi-O)'RV'pxd/9B.Xd*d&<Zԕ6s ǑۛQi5Єj=i!36OW=?t~l27#l%^@*ָ̨LTM0?%HJ K)HdyW{Èg]!i\t' F:J*'@#5^27i)%X-$T:n|!vwe//zQO$n v.k$?WyjoSȲYqrcWaƍ+qbGj-C`=K$_-ޥ5 %2^@+CDR| 'zkNG[Ejc-B5ܔhF<$E[:DhK9mCq(GY'M74^sHi4,c AR NR{; I#zDre-NF¥e* |]xmWGe(Ƙ>i>*hm=}mM\cZiG%t ) >ȩFz;OH2,Nhx ۚaXPk}A ?f~C[sk*4 h߽:NvJj-C`poKWO=7iKqoEv3g'S4:lS8yT2+T~WT~W#{HJmOjWOި˧ި˧#'mOjWOި˧ި˧#'mOjWOި˫ӱcWjTtWKvZ3e.GF$nۼgjs rOU8UMșT|7]|T66=wPOiP.oh ~m6=wPOiP.oh ~m6=wPOiP.oh ~m6=wPOiP.oh ~m6=wPlu zVtu)ڗk$yŇK'AV>nOm<ԟV۾Ǯ>*wxߛGA-\t+$((((((((((((((((((((((((((((2MX7h>XŠU)D3[xg?VkmQs*Gv☮WV)1L2VKi)ZǖKf+p CJG 7u,cGY=[70{EK77A|=&ƣBR@π0!g59|]א8#DB eDp$K,ieI# N5z_ebD֘/7ۓ)hmy%ENo$U+$ί^őN?&{7F5 ㍹wn,\#YprJ#"N?&|{/.tӧZz{Q[+((((((((((((((((((((((((((((2MX7h>XŠU163o\g?VgmQs*[m6nmWVmݴLwRt+:%".4{Lu qƶcTs[[f=8~.ڲ CvH)]_5pJT3y+ <`Ev,%/tlnBGFyHτ6V'GOMqٗ4\kA  tc%w$Y5=QoZSQwdNW'bR$))ՆNRyz޼}}* +vV8NY'F~.lRH7AD,>L)JATjl7PږÉ\42R!^i#S_8vYwϲ=f|6ɄJWBZ>0qikUzIi+xd,*vmjԫk"3.+ͿNZ2v @Zojl,+yC,N귅6BA;a%)'sI͟r6[bsFCRXY)Dvl,ŌJy! d Ѣjdu-)TgkC)~#VVU76"eJ]Ӫj\pṜ% P *4yI}aP' ] νΐznx΃ԯ4?DK%Q{NtJ锦r߄{$#=u԰uk[p;VL?-ǟd(8$P_ŐGa[J -Ƞ:k |ġ0eۉ8PWaWžrLXR%h ApOH*#Ԗ=fNS& Yނzko/!L%DAk#r,~zc$o@cIZJNUcUI&K ,B Wkn-}fJv3 Pϕlp2k@YJJޥExX5]駵:f%;̜*Fq1]_\)W+\T ,-%c5n۸i3Èun~+k<|.d@* S7K_f4^q I RqηIjV>,[EhO_e<Cor q<. u|WKGjm RTV& *zlj*u}YNDa4֦(-q J|ED 6FtCѤ٧ZLŎZm w\B9e+͜buMaiW޳ŁѵxB0@*J @7թ/ H_Zκ%GCҳ%ņv\cJ uTzO+t\|XX/8z}2WW\؅a[;),-ZMs#nF*S<ߴmwm5Z51kO}Hޤe- (}x{ҕ^;>b};nvX},:AIvSHi $! -ĽE;LY\í,]KjRpG7 g#تf]vk.i:w8ӒV&(ӮzFE`}qu?ZV-bH}-ڞySx,'9ʖX8!ڏ5u5ndv:C%C9`<}U$jCYӑ2*Z碸~ojƓxB_\DF tr%jVRNOA|D Dr\LEy${$M]x*ggn~zaf#.;%Ɛķ-ް9W^Uw/La _Ym$Dz'X 5%V|A 6}]EҴx,]!!kʒ#P9CK2MUu"YC2U2ZUjGYF VˍZ~+:u-ǵ:%K 2) o!*4Pٓ!%EZ3OWMm%Gn+%tm=y5vU*$eX`%!'zz֭WP,L\t Xnl){IJfΐ%)d!@1|=f%hJРdr,;lpaϋ"T"eBP%!`sI %Q#@jѤޭsnMrʊӗ)˗)wc;@!)OTqK;f7YM& s[#VO< o}uYS~ZSc=3\UOH U~T\ʛM۶k"mvFw'!w)DT{=AϦQuY3V\+u9R҃G+)QK{= C\V!i J2  pM!Bh)o3s@H H@}WJ)Jp[mIRI#$W:P|}JP|T>Zq;ZD9C500@ =wsbIJdY1_iA7h>XŬSA-.ک;"{c*?_*.wePbx+"bBߦzo6g{d6+ZT3d-k5lzqZaFBFTJRRC"*UWUOU#3pмD+!)B#}zn s~%R}Wq-֚?@AJ%f +OA["C;]6$g;:Q⪜E~qr>C@;pT°+ hin"ڟVjk{lkPZ:F,!ac敹YW' -Jr:VEk{Ez- aROmiU}\\u*"OoajeT3f~\]IFES<_~L$ɐ_yqjZB@HʔNU1iԞ dVüEڪSc+tw6RպH[dz=ݲ$eHuDuʡVkKL|in߭N藞eR k BpjtWcm.%@VڒO.yXi-E?b-Khu)ZaLa+7 _JП2-ӧIj4V\uV$ IZǩ3 [{uiʈ:VVHC UmYu[5mJE}[̒HH@ǥ85)fTZYPɗi7͑5р3' 8zM_eiKBO 1?IdB%`!T0X;Jxuecu?u>h$ƱJZR:R?aa9=@psAnպf^:z-5voNl98Us}?n4۴fn $uG8Um=4Vn֧\dIKݮ,YʺEde!(pZf4t꣦,黲̤IN/5P=cCIRt.WukWWzאVAY^wNN bS=0QO&C?!Q%1{a)*,\O N1ʪ\:{L:mj^#䘎oyRBs$g;]]olI)Gvv2̵SI< ZSzZҫǷCJ:G$GU-}c3R0ɞIBHuI;YO#t>kt_LJba<€%aTv*?W2hWeo}ŰU!)Lu֠P ZmCq \$EDw2 CGo|:}LlA0i]TZeme [i#qe#<0]WZwm?eUmEv!NB[J״E^# *\V!rsj=![Z@z pמF9&F6MC5ȟ C TFH=r:1X2Y Wڎ6\R8hӨcnG_>G[Z[lv_Ebaňh%,J)Z Jr|*XtglZ,VuImShShp!,`$yA3qw}[tMd-=:3 {R9*圊 ~Udm.$ONFᔧ`*#ѓukĭ5Kh٥!ILnK;ېY8|vNE3M$@^wCcil-j 6I N甄}md{eyƚi*[! eed`ˁX' jL~- u)p߄gu o 2ڷqKmҖy/y[h]Mr׷s =˧ zTxD6PŜ~naz|Vގl<ڝH[msE 'ւ_4LK#vd*KB\JS*dd`jz=o km"\e1Dx'g*J,1tA6}Vh9qGK)BwfԬ)wМJ]^[OyjCNmJ*Z|d`,DkF՚h,'$.)+#RN؍;sFb-G7JsѤsB47 @px6k#%* :8W%;3]ZLJC3J`Ö]6}+oFʏ+ ;yd@{dK}ij Aj1S6\겥C:2ց:ţڰOcO\e-$JQ䐬y> $ccHd%4˾$ Jk95ezDmHm}Ju] =e~Q , m21($u/ ÙmvMт}(H9Wqy7Y*AiV7\C ̭O}H\-%u)e֬2ZN>]T>fKdJmF^qJaiJAmӺMjjmyq`o8|Ռ5^j~˸$_dD? xƘ(Fڥ)PÁm7^":kՆpS3LOuMi!]*JyS8A|0o-2 iux.wNk-BD:'xȭr KKmX搬 Y@â0CczuFo{PJoͧtwM-,u%)cr'r>IQ=\o4T)1Jƞ$e:0 }9\SڋFqsQٮpƸ5!2F- yI;^jq3KKĭ5 7}GjicYD%gaЅn H#ִ5vO[o%̷}VO)x;#Z4Q&m~Kލ!QڂVYp9d\P ܒiժK̶qiI_HAH;8$ Y.NbT0#H=zKv6=-<]y$AnT>gt]jԪUimRV*)J3U0{zRzez (qm׉U..%Cm @I9ͯcr+EM=u\n 2|^:T Z5'O\]KpK!dя Oh(2MX7h>XŠUW}:*q~f6-Qs*m6f)9Eu1LGi:Wd2TyXnk(g:|f#AQz-='Q3b$CpYG0.`G: fGZS$ JJT$J:P7n:%H(ʃGK,;Ef[ sXBLk6+׽9"5ź%PʉQJA'cvR,7ufaKqTTYY  &إBe]:dםؖ:9E֎JҲa\ϘRtV;u|'W@[VÁ!¥(l) 6Tf^hmj=Q 2N{D%-LW<jg^[Mn|PL@qJI^,H$ AtҠ:eQmS1ɻl%-A=疒| vrrNFmLH"v,=!=0u O,{~:R R R R R R R R R R R RS~Zʛ4x?]b*qZYqglݕ[bqLWH+v☦Du- rf8[9gwq Bg'Y jyNYY=) Ԫ%ݣ[E۶;kkOqTU>1Îg~nYTM9)UQgL~z=5A%E%+?ZsG> ZuJj2iKܭ :.x,v3+yt)SϜ8uwc3<ͶБu}զ[W [% PYA%$H>V*F+\_l-ei@cC;bބtTT2yrkUi[uS=JxͿa d))XV|iV1]h+5ӆys4ԋ-6J2{K&K \ ȑpNh>F)NҴQp=9suYv]<=x`Te*RAr2p=AN_\9udwFP(RR)k)9im4Gt]2 .9dvͭ KYH.C zz 5.4؏&muRU rsh5;)f2|ha˄sKxiiH& ,n-ck;F]%$E\JaaV1e)#Q@؁Dnam؇HS̶9E X*WT q(۸=d [AËKWW"|یR^HNkaSܵ_mqQB/p i<>f*J)PPG:('8=471-aМ-. 9<tĭ%g]՞p#N@GOB/%ϦH27d QۍL""i1ۥq;ԧVN6V 6 +'pV Dqƈ(GinJFX'BZjWrSWL giFteM<@+!)N DKK &ZZXh2s#NIUJ z E^Ӓۙ),̇]$B V 5ei5&]l5br'٭tCkkrd!VӁA.!E+IRu1AJRJRJRJRJRJœqtHffT±X:eP)JP)JP)JP)JP)JP)JP)JP)JP)JPeM.k*o}u@ӎ#=uem}:l?[vU)1]׊b1LPi%wޢmɬ+Cm/YYz=gۮQ%y {ߣM4}ȹ3ʩs׽z|fw 5Vjk3f"3LM3V11LNc|VV܍FR28A*0Pˆ' }ljfl:2JBH5tp+E+cdxsݢ\nUMWꪙLQū8ZoZdg}۷ISȔHHScYھHO}OwMFkI;5+$ 3\Sa9 bΗn,ܳ) @vg&/:x3&M8[%m&SkUڅ- Ǘ=*$+pB\.dPn$pծ.v筘tJe>FL').c Ч:fay5Ogz7mfCh7i-CLvb!YycjV9Y$ԍAD{._t^ I$]b3ɟqLq!֜BJ_RSR$x#Z}SJZP\ dXzS D&5ReǎT'@Hkz*uG2I9#\At\o˳F\l+(6CiRݒa"]aY8r\%aE"CUpN=МCj}jPE2wCDѥnHBT* lLPN10TVV>@c<7D`Aծb`ͩyeP8h, E׺qeWhwҰl/Q>,Z[aMwwPd]P! t<%ݩ x@Paâmw~u;J{(De m(ܣYsk~mjw%*B_R3`)Rig۹vÖ tqR_i!I㴧`'o0*wobPXH۹ j)AޱԷmrFӌh/dI S.)I( FϚ<5ԓlWN"wOOLdyr~cϵBCQ$ӂ9z 5E~8W9l%O)K.!eGe8x.kj> mpv$ː#ǚn3bMEݷD,-Cd-%Ci^'#8pml}zrR<6 $s"[w4~\ܮ2suD)ociPg)@yIDX PG\-]a#*ٵX-9?m7QdX%QԨXAU_-6xڐH=CJAxrZǃ/a)9 ]g9ugP1RZSXjCV<{^BSBv,ePhq[o۞u&VN\vjI:7l#gǔusZzcQ54α\n)% TRpA1Q /[רi fކ,| )JcwDԲmȸ\[qjidz%4R R R R R R R R RS~Zʛ4x?]b*Pr~X]qg?~eeJV+m6FDu☮ʹAaJ ,; †p5}\rQ5*Fy?󮩑.V` ۧ$篞yd=}uojt)f&#sq?3ituv5֫:m5ESX⎳^sћzj;l R *ϨM~Nߘ,ӄ)YN9FQ U :~ߋ8s?Wm=w3yJRҔF="ҩƄ`6(ckuJP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JPeM.k*o}u@c=*ª=+/>߯T\ʻ1]i.Q]Xݮ\o[[G''G/ iMSU3b#w[.7Öb8%`Ż wܙS//NZO +RkT|h},jH #범.ۤ4K+/ddlݑZz/|":NXŠT =*{PN,3̬~IQs(mʹ]׶km6T)ZnWn[5"A9 WW*mp,JԹpҽm>}ڑZrxZ[ܸq HRwx*I5j5Oi%Þ=4)_{Ȭ|QTQ5KR KZCm4rR!$r߿ꬺ[ $-փVI# I#MZ!/M晧Cv<> s1)Z IJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJR*o}uYS~ZA3߾25sl_;bʹ]׊b6mO3aK\yeJAV^2JEqG.yV‡gA>Y\[j$"*TIs'9ZչG{]uMZPۣ/@-;mMˌ8҆䐴RAV_CV[m(B^#Eri1ss/|GVJ?T#OJߪ#T]}+^ tVoBvm+c_zWOmE?z WGnCa?E+z?|>t4n@oƧ㯝ЁߍOAJwJOAJO'㯝Զ}t>>z~:[_(OAJ/ǧ㯝״tԬZ>AB>:wbgR{ii u_l~=?m+ PRfRlctl"~9?]+V_r~:9?U+=}t z7Sdұ~#5?}^AJ~_{r'`tvO]1_{j/YXto\5_{f?AJ=] ӳ(PvRf}U ҵPJҷU:F~AΕz?|M4_2<s~Zʛ4x?]b*}5o{[c}_ݔ#m6nmPU݋ź <ӌ6uII$ڜ1ڎ;-Q\:pꔁȎDUOc8ULDm[oi2m,mCoum RjdYz5~UbݸOKje Fª&1GO*]?fF 8V1i_~,G!١Cwiq\cΡeW[S[K)%2ILjvV$v$|$|-U_rӖlmj4,7eJNp\uj#hBA<3.-zwGPO2HmuX .0qAdGDؔ˯EXDRQHP IJp|DwMnwh<Ӓtx솛C)B\k *ʒrg V,.2HpFtXΟk|r<]~9rBփ-I>PqS~^JtTVrdf9᭡:Ԅlg#VU6&q/.o~6?/Uݟ/ x}Mv>gXTiW\:d$(xrȭNڜpbvߢu7=>zy<8gjij=P&' uM>2YV.Rn7(۞l.qNtn+'8$ش|޽=={SrF-T2RQI v1XnSh!a\^GіTRJsYϏ**<4WN-v.g +ƕe0qE-q⡮cRU7l>#)2KI\iRO.H8 f!.ܶn%Fߨ^X+gKzʧz߫ChAgnIԤ)$e' XU:ltW޴4[Ea o J[U*V5(!-zMEKJӭ_ @R+q\qbx}èj&.W6ƞu!Ci*9%Dz(!x{h_ z&܆ۨR^πPC0|Zeh2V;{POYNJX KW֢O*K~Vx ˲⩥ Z RA. )J)J)J)J)J)J)J)J)Ji!v$sMnkQq'uiQ\ H'i9.OL+r37%"K* iѽ 0y])#U\*G](#U]#UXښ ʑU\*GsH\eڼC dT˄WnBҶ_vid,!/($ F~W!A6kZõė5'b2\AeV9rO>xXJ>L;]i"cqR.rԢHuEǵ.:NOMkۃjiJBWs/>>x+QMOi)="qkJ#i m ih!D05ވTlKm!]ͧ,$ A+6{԰L@,Qhj2Ȑ9rMMq=ThzF69ReJI9 *TUUq5BHUWRHUWWZ#.O.O΃'ՕF/ tº*q2^PCM Q̚+iϬ-4ی8ө(Zm Iz6P+\!"B5` ISjBk8%i{:>1Lv8=38<l}9\83^yeIfjUqYGʨƩғlS̅IH0Ϫ{YM<`ܴ4U]3LxOV^[7,<$$)5^ҕ֯u3[փa4tqc33tfVb0#ȇ2д%j@R SD!A[QP2I6Κ"r(m_׎I],rdeG,+{=iMDSTF&s|Ѯjg5L=|cV8Zc."cG z'7{}HͻZĐe!CxGEx.f1nf[@n2{!@샊<"TʖP!^{hɓg=~"RuknFp,FJ܍1O!΃oJ[f`^ɹA[t)Hzdc#8$Q_tM$V'3P\G1#PY=TiE^_mBLHOG}Mx] "2eNʹ%}}D74XWS#iZa2ςچB`{RB# Ay(uZ}hqzLJ/d~ү#vƒBs嬁_'|8(_ACV}ēE}CWxwȩ]']w٠ JM64`HQT:ύJ{$ i_E;֟n?T.r^b fBnKn) -gr3NJŶFܴG R]AZ*_LlHQ=\#ˑPGNm4\N_m4Sm=|Ƽ[RJ/[+Rr@;8#8|v?Eq:CW?EXEf)f:CV?Eq:CV}ēEO˧\ A:?Ux#wȬyRݹv=m&"AHlu +~ZFDy3Au߷[^eAM6k L8O6Qt36=k+~:_ݔX#TKQh3ʟÐyj>~ mܵvp(y7mɦ||1}TUq?N|iWk";2S/ۭ5p+s a?ri~z*yOϤӰ-Tvu9cU<anssO!˽2*!~}V}[4byf|>J*5nVn;wjcDŽݨXƜpK6bL=s!אK+mA9j¥4+(VӺפ;'fr8lJ$mAѓ2ܫ' umR\4AR#WXon-Zw%ZWXe AËp~n9uJ /VwOE oniqprp6@!(N @|(m vŔ&9 iNH>4%].+[y*+Dk}@z|.#rsܘTԼF5 8uO^K2 =!mp,-ځƕG.tZR R R R R R koBH֛\qG?DHܹҬtK_SsGֱ?AM\rFs_RkE7$z sMZbh6ɸkn(5~ՎA]ͤ6H$dT_pJE;Z|(a +- 4[Ig5o_@uaxy~^ϐ~RCm. RH<%}iR8czi6:jR ^S#ng"S^:1qRlv\i ZHR@ Ë ܣi4շmSv[Rq#iHye A8'5WANq'I]cpcL}n*dB}a޷YHu6>PjΕѪ]-s2mejA{BPRO1zz4|'j:WՅ)Դqٽ @8 kZrH5~UX*PlsGYkP~FP:5aY:~:4 ~>XwΏ/A˥c")W"aLbZ|(w7ՋGޕeKQ߷V/N|(ҟq;*ZsfAH=`?&W^ ۮ$ɶ?^IJqңjw;x/MQ%7E+4*}1WV&ufsZڮahARV5NiKi˅Bu$3$r g;_)Qm^6*j3_ܷMfr˓]T"g=]ES*ES*iV]ES*ES*iA_7_7]ES*ES*iA_7_7]ES*ES*iA_7_7]ES*ES*iA_7_7]ES*ES*iA_7_7]ES*ES*iA_7_7]ES*ES*iA_7_7]ES*ES*iA_7fT/}QKO6[X鉶(5ꈈ .0TRv滃z6j)AZ8;c&f)AG󍿙AB>mmvRP-mrur74+P}Cr75ƔsQ}Er75”sQ;oPq+P|Cr74P-m|/j;kok(: q5ĝB~ǭmw҃Cq75P](0K:6j% vxXŸRG)ڞ~L҃fmۘSebBՁqEuҔ R R R R R R R R R R R R R R R R ŸJ1[l! 2=3=Ck*VU%gh2SkժMw#D~\WZ|I2jnon'IK/Ly#*E8ev}f5Ɩ.9WZ|r-=׾fDݾ}O4,.{_PGmCW<>xߨQ/V%#{j#sx W64Q9{u-=EsM5zz7cZ{|;}KO|5w!]tvŎ^k0at%Υ+:ˉugW 6!)h'A n_bюR {kj֟k3R@7r*0y=*['31ZM3tƩI=K[ [^3FZLb(T %J'-}~|T럥{5ڧ\hjQ|r}\i5%K]w$EŏXZ{|}-=׾fn[ɷifcM藇t!gVSm>ʣIZW[j uTk:W'8A:}Uڜ=|hpui4-=׾f5g47u.ޛ3FeY Ts$`ԓfݢnPg#p20p*JsLl:Դ^luԂtpͽf E_2R†2W1:_bI|uOM2etH7)X>?TIgl7Q|5BϫSZ|oLv<eOJZI!#@q}snʷjvCW_l8Z]4W8qnnjLEXZ{|}-=׾f:SAҚNnI}vXHRԔ@'"Z7Z^o+uֈip-N22Ry(6┃cR {kpui5ӺIj:{\)HPS;|NXꮟH1rf8Ji+F7xg$9''صe㭭?׾fL^  %-"zR{%X;>JsKd͎J Rvh'*q("ѫG^V4g̶7HϺEmӪۭ ^:ʟ. $\r6r>O!Σ]Cx(.ދL)$–n'*@'Ao؈x0RG"YH[*)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)Jju K܇35?/;A"MͳwY)v9G׻kO\։ܝ5A= ^} ?>^;rr?r+rN)Dt?:g1ΙF5LҎ ş8z{~ ZaֆR\tJXo;@$C5 ^1&f5lr:_6#ZB̍5O4n1 wNJehQq$ŽMwOUT?4lj4OH~yxl-ѡqYE 2`PI޲Tw(IsUL=~ꋬzQ8G&[غLJZ=%!Xa'j_Z'՟GZmwƗ\yLA:KG yHW#sԁBMY-Yjm~fఅt0|74m JRy:L5r<2i^h;"#&ۓ)QJTRI#n9U̺wAK+ˆ*4UD=*m̥e4S;mA ԢMz1WFMet#ZXI~>$/~b!k ?c~uacbJdQ1O9֋8u fυ`g=Y-U[sFqm^6*1~q /n0\bi@FT[#+VA1cgs+3Jϳ^}֛tR9PMEF%ՖA*J?V\E3PwogܻM6jffjT֡9D$Iu\[)*uiB@9P|sպ^ԑE);!Ah[i6۹[@Mʋ) FRV"f*T97\[e&KF !:x@ggzŮQ4fM,3*oV \;TG ͮr $}x`mˌߴݡ.Wm5laǡ[̧9) 'km!*Z+ N WRTG5$H05^9&sa|)+=NFJCY^2NsR_8uZADվP.BCJ9j+!J𕂵35u蠦x[c~V=>T*Lxi˜I8=/$W>s5P)3l.0N]C)(C,%6XQ<&vJ[s]mkO~Yzq@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@}ZeqKR9Ұ +GAkaJ 3Ro9aZt)N? w&u?c,(0St'j/^>"Z?*{b-ޯgb/^iAo1]jޕ5YժmE~b&}&v' ҃We%Ϟ2@JHk;Bs#<2N|Km&dp!Xܓc>P+iJ ;rxZ~v# D~"X?1[:Pa&zc1,^oCb/^Aݻ^/^EM(1wz]OzϥSoGr/ a6ԥ] [Pk !Ի*K+HJyrpfq0i^QJ\H$pFO<[Pj.:C]Qpn)zR 7kdWbzc-J ~-ޯgb/^iARW}E”LȿWKjl#|]N;CI m8\VT=kZRI5JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JPlyricue-4.0.12/help/C/figures/docs-main-songs.jpg0000664000000000000000000012006713053456656016446 0ustar JFIFHH"ExifMM*,"tJFIFC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?9.kU!8$W[pp2zOon@"]]O{7NGp09av*4)^Ggdȑ0 <?ӄjyXIH}$NPc;R kmII_=Pv[,JoY;W?A1[D%Ē #8NO.tVf/ W@p@,3d mu \I!HԆA㚒DGY,-Lls+3yrzsJYv<܆䴋HhxvV| ?/Sf|>Mk#i,s [$p0sVF8X_J\\ܵRi՟ 8''[F?r\=FO\tҴ٭yDӾTyX$^yxnΕ2܅4D B–M"Sxnn<ȳBUhtgV8Px/GW3sf0t` 9L@ oK4XyC"$]W =sq=Z0IHm9X-t3!\$&WypISV簶k=Hqtd?^eU\lLr8QmaYẒ68eh v82*v.o1>dWpmÌcl>-6$yBd ʂOSPq.MƧ07v8pGCm${wqs/"Fwxz ROXi]]Z۬SLyq9 ?[}h"CPmgq'vُSܟa[+>4ް7Z?4 .pY2IM6˨_%ӳQgwK$ y]j:-7LH l9iک-"-u hp6N\qҪ1mu4R,d2/W%G dtx=,Z,6:w&;k-:+.Cyo7ݿ_EM% !\/" ?OZPAQ/z(#OK'j($h1|_8_Ej@gCbjlz[haDn{(q"=,Ƚ_Xi$ҬK1j 4ҦΥubVn ʭߎ "FKwAG8npy@9ȮZuJi/-qJ&lηuQu#cFsRMy<~iqܒz?1YwK%+!wz2`BVӼ3o_qp< ʊDžQΡ(p=q*{h^Vf|Fh{d)ra,H!G\3 tycqj\N2@j{#EkG!B k}2!ưE0p%w2c4`0}"xr@pr9dx~\ԥZ F:=y<kր)ICc!8@$}:2eݏ5pʠu%d]\xIky2 3T(J[TK=6pG$rKWК>/УҞW5aeJ!@ap*I9>Y#ޮj3ćM-[d̠ x19 K<(,BB 7.jZ $3m-c0ڳZ"PBlc;8ǘ=(4BK<+PPHil #*XNIw񉼷t.e2V#iWq=tfyQirMVvXs$J*P'$>5[|P2\0f8')< fyW,-<]WBD{5 A.$O;[i15X…k9zifyVifyVifyVi>d8UVi ԁҀ,Y)DhyN֊:\_:zZ~Cg-dXiv WhG+:2HѲ7+e #5oxI#K{syN$ X\gvgoQPiEkl(HB*b$fC2L$,<$p1ޓkEɚK_yVLc+#&4~ޢNeoHۭQ$D1];TpO,A{o AL4ew##hnoFppsBſ;dFppsY~ot̒ ~Ngӏ|'Qj+\֢'y 8!v@KEgE,pd84goQTu>im$LL{s[ُ`xbVgV\ <y+@X2&+@=*_!JmA%30%՗l|lpSĒ{VG.~Oj;z>ޫPjFlgc3\]^9dI U+6oS9ޢ+dEdiêrՉUU*smWs@ޢ4P_?տ>zQ4>%hEhSR ֗ڗ$cfWm6 Y<Lˑvd}*jgu;4g|<%n$x  = ($ԓ\&:j6Agh/f&!mG06{eִAHe[J|I' |" sHhFA"\[i+0-ܩ8688;q\U|aƭQ#yd*Q ~u =s_i4}t%-ʹ; 3¯Jw)eʁy$rq]! 8̉$\rnbV퓀{s@q_:D V(J8`pGG ERΊXr>E~9l4Ӟ,8e$9 ڿo<9\]ZfQ,$3%r:h7h1ޗ#[۫d1z`2:R[T.k)i5 㝧s1 q@/ڐP9i_ -AdR4kd̨\`7:sZM8<Ɩm0WA#r $[MKV]9Szn#–o,L@ m?|gxe@,ųw&`3X{{GGMs^mnI.QBSo8ڧ񌎞X7#U+wj3@:$=<U4ŒhG6[-Zڹc0IlLMߞA<35zNRiz5ن[;}@WΒ&q#?px lm/m!ē;T! r6t=XuW[Ss @fSN?sͭìiB"b}wYI =O /}\l3v(Yٹ(0pQF:m$cvf%JE]9\iwͼ%6 $s9\Ğ{CoimeC ) oJ>YiSFkX(c!9Ԟ2w(?X+ҏU((?X+ҏU(ٿ+?!za^k.h{#5xJ)Eu]aff8dkC'^KX-x3n"HP'awLӯ/ddG\dlmۯmt~t}tWVg6H# TƛՈ aK`7́OJa7ծ.&Qb sw0@ԡ+ld\2q/OEr:=J[K$j>\)PmR8##=yz|hpZk}FFz|i߱@OOGUWkHjH"e<|w\Σf]Z{ [G  ~RH5ux4cU w*ƒJ|Td9$ Ai?Cuei%ˤPDp[ D,qQap*X/Gs]-a6! eaJ k MSœ( 6Aju? jzdڑ<@>ַb$A_n+kUѿu >\IZy̻ 2#.XgR B>x  $]sup7DJǀU[Qw[bIX434a A@F'j-2=3N%b@w=$ޭ?f_SGٗP?f_SGٗP?f_SGٗP?f_SGٗP?f_SGٗP?f\u5ξf81>4\yZz ZY(-;Gkc 9QɩXE(eڄW~V^>ukHX!o5 3!xP+׶_i/ݭ! 4'94G0X V&>Pc~>Չo1%tDY+'mV-F}jkA#,e9 0m\vAi2j^5Q!*$H8 Pm+p"'mLYpgEq0--=ܻh$BT 'zTI}ͭ[ʔ2bES$Dɾ'$nSָO@Mı3S*g<F} JJ$Xns6<jj< |jj< |j|v<Կ>5vS_7Q]A$P Ҋ6K$WR (ӄB rr>F;ȥv6ܷFnq9/-mV.K]읞b"2rjт݌`r mϥom֌[?k<i%* C3Σ*9Sֱ֙VkLƀ61oI\ n5-(2͸ffμ̸\F_h[{Ѿ<'٠箣/hзZמnfBOtyu盦٣t4aO: ڏu盦٠P4FkO:xu3c*,UUlWW_6 mnZk!VTƧ@4 A(H?G (fVbg,z_ fkY$Kt2HLjviSNƚePqe$2G*kiZ9:6sbB9'#59A%RDʮ7ap?v\z`loYZ_YCwd!dUW0 a 3ښZ*FFT`*Ɵʅۼų.2_fWKjmNja,I$gP6F\ީnu#h Ak6z`OZ7c3Z22W${m6Q-`6<\ۄ}67..m'd`5c8QوЂAj,s[2f0G]'R͜>e۬D[V9cׁg{_w(I^eePcv3=:OM5<1ǜB[xW^8A|R2/JrZPo|yGE41e,H\<"1=SҦ|?0k,!B|#hmhzl/o,m@خ ䷽/Vr*IQ@)<O") ED9S)O&/)<i/)T_?QE!?)\?QE!?)\?QE;(=Q@C  !"$"$CIg!1AQ"RSa24q#UVcs$35BFTbrt%dCDe&6Euv'!1A"2Q#a ?vǥ$Td~#1$yA([^_qgdAk.·.Iz X$AyӺJmCgsmm&RZa$)ZPp9O[SKe$HYNz(:ƓJwgR+/ˠR٥3y>uR" ]>Et_:LO"u 3ȿ.tYd髐@rz qߠ@t^8V:=XA4Ȍ 1H.n";\1qgngEtܸH5bJu #JTIBh3KV3w 2PՕ(3ٓAp_A7r/ˠW :C둾] 3qucz΃iG#| 5s8#H3rFٹ:=H.rcf|7ˠ>%.K1?]i, #DX%n6{lҊ\m@RGKDtɎX@8FR *='T[bɵ>pmD!Yć 'e]tD7]1>fƑt ZB  d;iw QjsXF4R_@SmCw^AaV4Η(2lO9 ]6?zNtnMU":<^n(yr'iiZ^#rJzkxu(IQGZdP@ھhMO jT̝vI)sՎj#^m]0nΒHeL~kq⃢ˬ4޿ٽC{ȅ0\#9`8BFsq?sfLZUJb*Qtk'xYE?9~ +[yA`kopoƏ![P(ix x n[=εDu%W8Q]pO ֜RRN~:i:gG\˳\q 1:qKc O2A;XCmmj+]2c8H:mM]vk(5j=ZjJջm*!O'%B<ӚOӖ.ouN}c!ѣVym;Qx:oiFrPT`x1T7e;nE? H %JH;Rh<Ūiiܯn*FU(#P#uՅ,]n{Eh2.W]kp^m ax o~^ǺGm-猵8i)QYSJ8mr  zsمt!d()! )DG: B)Œ wi'> [2 2-%"7ϫ]ꃓSl綝g.Y)X n-k( I#$ 836|ȿJe6Lh;NBr0TJR{p^6h}=[ ZXd[Pqg$yJ$Gw]>?m6dJqjd%OLf)HʃѳȚr>F,JDXɍHCi'$gY$ڮ͆LMjN!$ RPRpB0pqyuI}Cv68rI;mMkWɗ ]ܖIJO,o!hY pӳ9uMwj\HX`Д4{ f~6q+St^"_wWܵD6d,l{G:kd3:sZ>Է\qœ#*8J@JG"HY-.im\uFf56[X]<N\K $UN(%nUiid6얭u+ F$A7w|[^CO]$ܘend!+Y!XkMh}W?NZmv/~eh8)JJA*?MUL,dE?oE >E4V= 5f7[ Iz5s>Bњq̭dn'qRVnaw\~]9q,/s V 8&7P^uK+`:thZ'QF}1`1 ^Ze4@>1T76ͮipЌo˄(-s}jޓ4h[6tg]}L4R;^QRzMfTK)s.^#XC2]JUФ0A$odЍ;Z-mJt㨓-M6 VwȒh'Niuŝi\t%K˨wAne;`nĤ9oP[ AFZKLjS 6,B^}}t.tX= Pg PU50΢W# 9}MU!g5٪Q5T?DhR!#OG|;ʃ6W6 \$ yDG8q.g`:e~vh~c4M?Wh0`>+0ݚw IAa;4$5~%oI@藿)|j%qw~z&eѣ"UʴU U;(5+G݇Nw4\!X y$>H'OL1< anBJ*'4ݠߠ[F;B֒,;QoRL|U)I8+JNq]5vz[c([V3ٚ O֘ɿ1m>,B@G<N=B=mqh2tyi$!7QW=a?:vslTfaԵ(x+qNyPH"᲍':\I~okq|)Jɰ܆}kSm9qK)VPO02@+&sSGn.j8()%AW:HԲT/t ε/z.ǿJw/.@P( @P( @P(  rξ$O$s,P]zjyL\:j~ So aϐeCOqu#2p/y┑Ϟ;{kMk_YګL8搲i O1mC͗ռg$We}Z-=!SoueNwVn$$}9^Fw9W}3~WQ7 -mu[|,%ǖ02qϪSjBr\}Vx?5|~CHa!!;'ǣ5yɓuҖ{i7aT/tqu]e#0[[3X޷7[ `I+YPDyWUmD1x3dD mA b娒lIύAidHh>W݃rG^(8<  VvmNFA[Rh!!h )VA?_]Csư7Qԭ;mF;tşt&nnw}@id[йXTTnf,pRKR$ ,6PRrr9<™I#Pj|wAV}'&,S|I- HOQJ t(U:t(YJ|MUPc_. cZt\o( ete%|[}1GZ}7JvG(2!1YJ QX}B\:!C}a(2"Cm_Ə}ЇW}#uaI56F.Rd0Trr̜| |q>B}B4#(GP7Pn'@O=B$zq>H <q>H 'OPcpy#(A)Pc$zq>B}B!>@OPn'OP7Pn'OP7'(3%>@GP|O~()A'ZWؠ 0[ڎcLόwTA=w* /vjkb R0΃]UgպuZ^v+vym%KH[i8$Y9 ֟l;}ArZ-Az%uR Z*8qA_bŷ{lHrSL^# )(9BT]*Nf z^.d jyX$Պ KPh}[M-Gv~փΚMح(K8Aç8R/Se{ulr!A'SAE\[ u $Ӫ<#xi{>h;|,|On|<:OÒIA`AI*~;xh-@P8=pu{@P8=pu{@P8=pu{@P8=pu{@P8HuP'΃׎aJmSa3h*~WdGv{*mʛse.]A“Ang>zW1@gs* k5Pu'mKuL{P<95 ]T0%()pw}(9E;y @g.rj>{P<3׾UVY*+|ά@gݯ|>{P<o՟=@ϻ^T@M^zk*;~qw=0^TX9SarGK'R]suJH+񕄨sOqϻ^T}ʠx3׾Uvv@gݯ|>{P<ok*;|ϻ^T}ʠx3׾Uvv@gݯ|>{P<ok*"Re 'zcg > __`WA-|u =g~D~Gh,o~j Ѵ=Nimk`١Q(*;7x9<Ou64.?mLE>a6qJ#xsUg4LMK-ʻ܏j..9$7z A3n5 7ZX*U ))gy!%G 8%J!X 6eaQ2Li [tt1Ҕ(** >;I@W(+zQim? ۷J ajh;GIVJ|TYQ8YAxٵzI6uK@9axqImFfjwNBF9osNCs[^Tk-JtүJ*;--:ZRJiau6jHLei7-)))`〵EodH.>Hl;z*FGxAdA\hZPjȶV:oDK<-|>gh5^Րyt{Eir8-IKeEIZAQuG]3fvS]𜵳k`K1IZI9A'T3:^~B2#aQPgJ#Nm' '9;wKO _GLJW [&GG!gR4~g>g(MIh86z(&6G>ύBd͹T6XeNKm')m\ɠڮNMiiV{rKa=l7B2{nh*:a6Mi$+iLJ&S]-o-hRwA'8<I͙ZCھP}K9|6 !qg43pLq/k bC Jw"QxFlz5;QϺ 3Km %)juC^mȠ-1r4v tjBr{JHAכG@7iQ]5ѣ]x! j*<o 6f<&= 6fh8M{4~mߛG@78M{4~mߛGAsh! m]ڧ-w:?Ak vGw?悿~TPkֻ&j_g;9  2rp01!{!7#hE7kd}-֜G J V7j4׵h{bDN) MԑVR9{_6dLu(k<ґ.xyr%k";)N[B Mlˍ hQfYywS0;=҃tڠ\5NHRciPԙT:*>-gz*Le\eXBCF*+QRJBGhB-Qb|v V07&*)i %)ZTrH!J僴uyuۢ٘sud-*\ɡSҒs˷Pxu9[oonL_ue%+qIPWPJ9;W +QƇt+ɹZ+vlx$dʔ ;dCoRJ9omy`r*OH pjϘyF l\".i6˶e)n7 $s? }'QejM^HYMŭ^yb;k%H%EjUrmg(<﷍C*=oHJQ!Eȍ%'/(ԓ`?BP~h;{w]kX`dGmN'?-ܶ٨:"DT-TA\7/GmМ HX<˞9XT+} x6-6[~o G 3HmCSqlkiWӌ;d~{USCmfD5&ўqxʒDxpP( Dx!m=*(-0O󝠼₿W }g[ffݘcSYun%Kqns 9u@r閮NN9'HKo<jFB|c ?h[;kmꎕ6kt[xuCu.8QH*(V9̓m3~3q{tSRJ7@O ayw-i R-i$)vF0NK^/<9 WIUTFX\voQ&zZ9NN@#f(%h |{֙*z+O51/HNJJHAq^t+jdJj]mJ!(J2qI#;*."l 2]LQ6Qy0uڎɴ)d֢zPW!#hNTȔ';jEl m)Ьc;Pq6qr}-\ [*g-DA{PBG؞L[J]ktY]22SqyJ]WGx=:\G"R '$+x-+jm6X6yn:]t D 8(8DgeҦҦK @U-_$45l*,orNAVy]/ty]Z뛷Ge~]g \Ķ'V[+ #4n{.l]-s&!:K,%%`3`$un̬=~rKp܇wwPčQ4f>g%^5ݎѠ?q@ w#onᡭ7-wm7%͗j`na*՝\P%D$c@P(4\=#JŶmh!~WAoyg?)ϕ8EP( @P( @(h3@P( @f@P( {$_xbgtC⯂ϳu6y ]7xA#klsDrK<4ڀ)PEܹ,DO!N8I=MgwL3YC@8q QAٞ۠~: )A!EJ$cuQjuv䤩 a>5$8jz:,zz8mlZlu hd)sה-'#}4ttttԏgͫPy^c_UPOhux] Z #ՎbS0hml?emn+mQdybiItۥ/TZcFqYDZJpOb(бn:um+\TXB$6+P>1J#cچҋq]ѡilpKlʹTJ'=C=iMN9$&ݵG/oG0D9c$yw̷tU{n[>tB'}+F"r20 m]hGq>*7ep:QR@TROvr_+KZii-K`zsABc*8ztwc)ԇoYJO5偞tNе+Gl̋%C(2G )nIrךYilݤL֕cuXRu 2<@ Y8 !$Hom.CO]f3Rw@9!!Sm3S點jKoZ7͔IWQRWֱABR$SV\tCCW-qR!!C[JJK@ɠ6[ :!w;kn;m=$-Jqz԰rI_XoȵWbL9S-T8Bma? !nwm4w_#YdP@)j {քŴ̱O9VOZAVȶUl3I|i2m>y[Qϕokƚ?R˟zٻ eW,uaSChYm3^6X[elN7yP'Fka;qxaӻMo1VIIٮ5h{uSq4"aCzk9W7@g4[_bj:Z =ٖܰDx0@Ryx; RV:ױmWr\! %3C'$nmVZt>kj46J TG|44VEdKwPK[e8nŒwyl7$P&6twiXBK18m4mN'5z/1#kj2T!' m e`&/c]3UZuL)xfxu3nm##G R%)I( {jUO?46xࠜч h Aݡꛟ?ܠzѫ f@TY7B-N/|ټh96wuGZ&Khi. %<>6Y6{ڢni!q>gpׄAѲue=9C`$  ]!iRySogK񕓆u Byqh>j u7MɄ1PkTP='8KXl9JmHFZ $o)G${AmgVuƄҺD:d JTgڐ50RTXnqAsVnz~a \t <vݱ[l.YU$J y\($-9Þ23Ae>+ߧYnUл\^8 Q Gt\$zUԛR]Fd3imV#+Q!KHHdx#4Z -d[>ꗵ<B8 )HBTq2y~&Ԍj=q FqC |ϙzL6Tٱ\.()x9so(<쓥lr}Z/͡Hq: 8)P(!uAXdA3 Z}%PR +! AaU֭B1 ATQXH%(<: ZOM4 DJԵJKZ*RR'O@lAb!\#l4^a]Aǯ.ז;N[ RZd- O.Nҫ!BU"YJJ$ ̜s4deťrZْ);ҢBj y|8mBYHCL0m u% r0eӖ]H6o9ma KuE#r=u:K*u-*‚= h,Ki(*_U]\2֊5,'P4oo)\ @qʂ-*5?3zVW^?H6] )t#9y]( {jUOxBҿ46x࠙j } }WL$ՎCЊ g 6d8N&wͯ4m~ɠpkM_h'|@; 6d8N&wͯ4m~ɠpkM_h'|@; 6d8N&wͯ4m~ɠpkM_h'|@; 6d8N&wͯ4m~ɠpkM_h'|@; 6d8N&wͯ4m~ɠ9)Xz(IAǣ5^VD^5ޥ֒0yDA3 1A(b(b(b(b(b++im{/ U*(%tbh$8ٳݿ6 j4sF4Rف<+q!RIWs#܊ gתMM:*%JTHiΒ)Vw{J**IXvS% }V)Hj)eJz l][ f&~ӖE?oiG:H8GI!\;S\uΠv۴8KgK?. #\N++u->2FIO֦tkC[Br #u;y i*x^4CȻ-"tmM$'mY!#8H4{pw]eUgOc2d8/Le)T+xvyj}}nKI@q'P<\nj+$oon@Pyj:˦;7c$FQLFA[|ʷ79m'\ܶ}'kSSogb6c5}|7RJs! $h=scekPwzt{o>'u./`V7AHu24lѬ.MVsNej@'-[TFz(m,M_4,zWNE2'Vy2qCd\INr@y^.S\5*鬷ƋCiCR;ZNrm*o JJ-= v cO$5-J2R@*+'!fD)4XrCum h;h @P( @P( k<(}ex֐H!_4ylonàAAcE㾩pZJ8ݸj==,V7˕$$3:]JѸI)A#8$c=C.+"[ >(uPyG}}L GX-WZlraP)(rIdG/D&ѧ(E1 )XZ"H@#(;Z[ږ̶Q! fKI mRKiV2J^( M ;,l53Ii$`s9IE 6Zy mE*I Dh Iؕhokpwr;tFS;bTt.** )PR[*w YR5R-p7i 2ww\ZH”7rF{@P( @P( Ad 8(4AZ⯂[J6[d)$pvjinuK85΂Ҙ:S_4Ǘ 1@Ly:S_4Ǘ )@Ly:S_4Ǘ 1?t<JcҘt1N1 JCe)#|Tqc@2c7&3ͼé m9A=]Q&6c5P;IqqN1afz4DI'Ѹ()a-䜫꠵͙ )zl#4BJPAyP3ࠨQ2Ѵ mZKsszVBjt.x."n< rЦwJF;ў"<"3>ʽˍ)'>.S[`:-qXAqןp! uO (>J:a܈Kڂ2$GQo] =-pQ $$o8Byӌ s4(zzEN7b:ӒXBQI v6}Kmj]F[p R ФHRԔyzp(>4ơbX?uRV.m\oqyURDS)O6Ҡggٓ1mH[n6'(ȂQ6ѴmZKsGbqs {3-G7XF"MQ?nAN m$_DVHWUlpYKe1, -TzO, yGs86Iʂ)uN{գLm߶$ۤLq2;*R6^Sw AG.0]B[`(rA_9 wKW4Vx࠹칰@>P wD>]V{Lϯ? jcrJ@ t';G!;vH400?4ܜuzP4< =C_RkYI-ѦG2#%2Am֜N0AP!F 1"2m-4` % 0H$$Ah)I@84˨qۈu7~*Q]J@9vA˼(0z?/ˬ8=}RRos<g9`G@Wu@ Gg8}2̘Go2Jۉ JF |C`ĎXJP-% 9rVmvzEg-\dǎR3TA =<? tu!'<=@H`1uwPk<ȎĔoyZq;ZHw@<(lĈlGaM$ HI RIӏP`'g|:.:n!pJZyDs#=ta)?'e_?ZQGy(Ywsr607qKyNszh:h㩮6QpvuȊPE (xVyPz,C6;2eJ)PBO5`s8;VKnKQNVl[tGt)ai VR21jZ(ItEshV5%MIJn!J A 6^nKev4J(Uսۊ j@P( @P( @P(yi={&Ȫ_UPMxp%zqHlߗ~F(=ilw]CfY=d*R6J7PJyg$yR`Y ksu1b;ʖ␀h'*Yulm\.rm Ūcߘt*!Qt D9,:]m Em gOɷ;ӊPMC U#D#al1mw-7k3EjH'k 2H^GnvT{mrς%l NHukloyIq*NԛFQlSJCrcXR6BEJ$]B?iWG~j=ee ܺcA'M)ƨ^2t;8$QKтh9A89ڛd-Ӭ!>lj#)\BbFqA u)%DlO[4ƄmGBNu$)ks#%jVI'{-4 @P( @P( @P(9/_A{RO~EPGZ⯂SK[g.{7AmAF:h3@h>;>0}1ϲ8=tO?AG}#@dw2; G}#@dw2; G}#@dw2;w؉im ^WUe*(%4t:9^tCun7Ag߽ܳ@~Ơt߭~5k7_@ZjMO7_@ZjMP:oֿfkƠt߭~5k7_@ZjMP:oֿ~Ơt߭~5k7_@ZjMP:oֿ~Ơt߭~5k7_@ZjMP:oֿ/z-<>V=MW?˕Ak }&l:^ r^j("v%lDYOj ըƷ2ŭ3->v;^v9v I s xaVqF=9j 6,vL}ץ#y;{?F PSj YliEvl!”?Ɗsnm7I9e?"LDQ Lq\N@"l1`Զ:7EdE, ;wӔ9su'fZu_yR˨۩pu%BJz?MGpL;N' B@O:RP( @P( @P( t+*ڹg+*.PMh\sjP[' ̎dwzh΁=t dw]#z@W1dch@Gx2;Ǯ=t dw]#z@Gx2;Ǯ=t dw]#z@Gx2;Ǯ=t dw]#z@ ?bW4C`N.ܗOJ##)X>᠂cN]bF;;=J zn{2T/{.)+8_(,-~Dk_:^SCks@myNz )]5o9tFs )]9t6=tה箁t6=tה箁:^SCk_P:^ZCks@myNz )]9t6=tה箁t6=tה箁:^Rtה箁:^SCksAtm _4H'Y#,H#tT{]V'D+<+!)@!'w{)!@YwpHVӣd!/&w5 q;@$`y2|> \#{oYXLyЁR}N)ʺA+ϣ wch0gm<"}cG{ޠᾟ Y'0G2"} wSڳ9=ep/]M,kjިJsqE\u$c/$ ;=ȹ(@ +A /7WxPcª xY]⿽@@zWc'>5c~yC?@ߠLJ~"ߠµ~< (2(>8GWz~'רPk:}[e:\su$}܏}]3 n8A–`+vTR :0tty!+u(+x ))#?>6ͱG<#+};vqy}h34l.eNM jZN9Gxx>rʄXP!ƒ\U(g$|ͦ@c|='G|oρAYtҎ~Zwglhf7@>G<}rɦAƻer#8w}'E~=OE~tk?E~t[?j"vGgF~ΉR~5U!n?j=\:\4pr5_n|j=?}J~zE~p+UO+:-ԯWt[?@R~5_nj=?}~zFM1qm2 A*9r>]5:wgjۈlHB@$ķ`;=Vy4%+ehX#AD9AيqMNOA.~Dj5n FRx④lk3Qw#s ̀Hv;Qq1,ZJ c#xzsƱ3 ҫʬ+1iUeVC*}̪ QPTuPm4ܺUTK$&21ҫʠJ_s* KAP|9> غL<4ӌ!<`inC;ڇ4j/S(<N@nC;ڋߋ4&Ex v~i]' _Hg|QO/3(<@vC;ڇ4/3(<@nC;ڋ 4/3(<@vE;ڋ 4j/S(<A2BopIhIA~ni;tq~3ۥ.(:VkcUlHqӸM[ 9'uI$$tZn@,EAO'4\ļӍ(AG G ]WO?H잓a*&Vjf 2)*Wb|ߛ5n%˟ݶ;.[K{uJ;*ˁfKg/䯳Qw4[޳cINxM\[O-!6y-<c/A$ (b<`(aAnTh !j@S(E'm\TR&c#';%%)Q@D?O[Z_M#ސ%Dc4[G{z-9-;{5Wۧ\$XlydydwR_lW+\7hEh~>]TtՌKhd֫nT7VP*!HV; 8eJXImk!*#uw&(oL'e q\ HQ%Xd&~"g_U{Ƨm7Gm!n=wǎ s;^grQ;pqՋOnwk܄Ći*%%%jNJ ?P88#9MlsL萢yԔ+=6CT A~;]m).!C)RH<`Ԋj[..(JYy<&CA}\/]$⠽nxL誔 keARVAOuz/'=7 FqaB&kͩK݊+O\ѦK%%.qy=,毴f@j}ݑrŜBV-.ԬDZV18O^ 3m7OR٦PjT)$Z_&mAh+qu )eX2,Z_h;Dȝ}:xB޽SS=)ZPJB9n@Mؽ#fǯ.oK+ɠܧ#ԎAe#\:j< ʷDSE|qŵ977}9&hSUh v [d-xhӮ$N7 9p~l:8rmŸ[ʵq֝-*%H)斲7FI%D#TO%6+V?a՚Di3ww=Պo T 7C lG_XM;Քp['T9$.eN'̴e7Bn-+䂠Y'lzjCqUxuQ":p8%#) r@>tjyhotgO_K&!Uڍmi*P%Y9=,{Ӓ rp<)%i7KM`Ø> )/S1>XMO}'ʠKO@cʠ8%YtMЁ_w)}m.J%KG4Hkx~ZMYj[.ŒuŅG8JOiז~+ƽcTG<:WAh5wіۄCR}V)@P>7mzqqex[mbnVّ"RC*XZ2z?j+HVx#v+DkL4NwHV5,}#ZMJIl̫5ACHr2$J@!¡ pN><63sVw֬C?k@o`cLw4[T) JXqV,g BA ǚ1Vڙwk79-湅8ܐrHWejr䧴ŧ"?7#PNoP3p&1Bɐyk'y~A^F̳}x5k-ͲC[؉pC&jBֲpzջs'/MzoOVt%cz\i3/DSx)pݓVs'߮f&Z%ȳސr2$9THh:ڢ1"D#0Tq )%!)*8@dA2lGLilN -`E)6BzͦWmN&(8$:(#yգk]I G࠽LDYTHTwP[pu,ycE$[vfw!l6R   ܺlTXB>GRSPZj˪ MJ 'Ӓ)}e blio Ya $9s$&E"IL:un*!;{2{9' dBHtmi(x4v|︞4=Mr%\7g`~%9vN 坺mq dx̤L7Ooj}5?ƍqPfɬּ︞4g}ɠ3;'Mǚ&f|߸4Oٴmj9$wϋA 3ϸ]4#[`4[KQJ!:>tqs~w8yqh3gMߓA1n"c0Cn4 )9 P;;OA6lɰ.6mkRDvlp޿^o ev=O]TB!%2G('cۓ^}(?AAE\#Ou0ZQIFSGuDdcAJcdP }f#>A{}*c$zXdžG1?AA[#-oGrBSqWХ A&Jߓ@~w:t.?r;h'W~M|!ʓ+&,47x)ImH?h9z*|A!OLbcÀҌg>(4c4DCA(1h0~תs(5z@>UP|4[Or} o+>PDƥS5镭0V Ez=DK>Ƞq_EOA>J>-?%+=j⻑'P|?jŧP`j 'P|IZ5 w5ie5)j qI/kw;j \RȄ'> lyricue-4.0.12/help/C/figures/lyricue.png0000664000000000000000000001743213053456656015126 0ustar PNG  IHDR9sBIT|dtEXtTitleMade with Sodipodi/'tEXtAuthorUnknown! zTXtDescriptionxKT(L.)-J_~ ,iIDATxwEF $ zP:"M:A@A$|T@>"H*{'RK@BBz뽹-gww=;gfΜ.յ\ H]k =nPJZ$k9 ׄ(G%=ZN3b(G%t-a C~Zf&T]m#ԄQI\o!0@M*ek:3=[-d36%q X\BQIa)(Lr]HA \0RC+%娤\0RAĔCa( m5mneŦysBp:6+e)HQ+go$2,$#LA2F2bSX.2a1#LA2D`oq&u0E9̘)H SYs*0ZG` ˮ\VIA򜋵$#LA,`˴1Q|F ,ټ]׽X݀+p7L0Im&VFx(c xQ٥ztwփEE`7u;3Z@'?EY$2fb)WE(+փ4Pأ\rA|PZ M 0ε5d)HBDT/p-G a i-{,v-@YAz}\R'^~:փ$<`&VfD`3`r4L0)zk9B$#LA/>lkʊ)H1v-G] PVLAVRd Xe:krPUE\=q"p\C{z#/ L/[?ʹśV`ѼUKgAN"eq 'nqQKY7~p9<DgA})*pzhNYӀ"VTNz L->4]` n35[Ԍ̝ԃ+3QUL`8荺Y CJSvh8Jԣ6sa^EC`;'꒾eRIsz^j)lf䫔ǭ>@w}\O >ͻΠ AF{J+AAFHagS2LZkTY?K ['$Ed(#]`)颶30R Y`Y{=IoyX:X ӵFf,gaS4ue( "jNmNF#S&fS%LF0ie] aBۦ^ADͪ0rzZ#7zYX[+na32aqA(zn+$l;m#$4^Ru*Ӏ(:۳)p,Z@͵iKV=.u03_HHL+/iy>kjbIvJ| у<ڃ.`/`rne 5 )!X{Ӂ*glʮșp@fR, Ο64fוiA!k9rb!`#OLR%6±ȉWoz)D/0Ю4ȂAD<ص9GԤjbF'y6 *GYO`?Ȱ2;YX;Xe6fzpkeMϡ,(BAD븖##^tܑs*'+rUv1:{:Kr)H" CqI+A83.s#=Q:*7 fXB?x\ˑ"2n\+(5`EBdS]A28ll?7Cpv,_aD`8c `oǮhAj(Cqrvh] P .fbnFP6j&h c4|u!ZPJ ,w[jW945X#!ϺNAq-G|ϦK\ G]Z8I[zkACHp'v$uaۮƈN(n8mu{9G`Iҳg#-ґ۩\Q#nOJp+hFCq0{U8z ('M,ӏ&kP)Lj~'%6[MKHNAүE#ݤ8 n3HWv/,rTP`^(( @y(OVxQ[/rmk ٮ~.2]`{u/=f@Y5H>,@ۦH[_y*p똸PNq.EE` s>j P`iu*4@!jxm.-poH:lQStB`tK@_ "f>5(FE9lj(O@9utEI#eEWL]*B5Ao`v4ԥy$ `# W|ձr,A{G+EXzX߁ DWi])|=T{+U)FmZ\NO2ssvuP(U4B!Gx~!U>}o`<+ac7ۑrTS@bOrVcTuԳJV#r|,0QUo"[󪐑y(k9zÛϜddhp<)n|6ͧZFr*jBvF\jprz ,]ɿmwBNV|aqAK[:(ԸP2|`g t]Ț[Z\.)78ڃSηY![YO 0ż> \)_\(HZ'>wr0)Hp1ICA(r%Å24˃=݅WD>ei 0ſ+?w6ݐCx$b)2.t"Y#DE"kyv(ȎyT> P{.xWYX4`kn L`KRbfes4#Nd2ڊ1T'H[GAT&-YFqYn1 ؍hB6fu0L9B>`bktYX \ ,܆=|&HXzāa]4V crbit+Gwϋaaaaaaaaaaaaaaaaa4kr"z(/d R(CI+М. MOw)WJy+/SfS0HD(Yqho[] URsAr(*BE/P"ݟFB>mSѵm<ϥPts-!_vAw܋9b R7XFc001PLA #S0B01l7Q^/ګt6C]JPF?`U?Wy-ȋo)&q=xOoz%[s0`5? Aל&=OQd`&-FGz~ZZYYҷjP]ޕj&Uh+HSETa#K\Zpzm> > {nysuem '~զC"n}ytQθƔ7|-0z?$Ӂ woU4"-V?"ߣ?k}?6!Xm+䚩覨>hw:k&]z |S h_B6xtVPnNE4j OԱ/=/z MՔp4p6p=D`&ߠA)!9ACb "ؾ4!KPR ,SwOWﲃ&IgoũE iĽW4(i"ۈ^[7@WΑk83@A{kB0hVAgI l$(0RA|N=Iv %9mbΏm=6AC_iQZE.98ý}ш(̈~Bî!}.zvK% ,]u0.F9gצ(dRY:>у1y&7I=|XU{5;Y;(#[G[`蛼R]:vdEKY^T|7H3#KE|J;(%o>[,J#k^s"Gwh?A*\O96X}'j()K eM(WuhpO%*F|_*v996 |\gCmОάrL Zv`Zej1LʝuvT.&FN2D@y <]Ku^L). Eq KQך^w#x:AkDޟ5N Tԭ9{6lE}E?JTiLx+$|[(CMu"% a=M R|!wUwj>/n-kQW=Q^آ_#wJki/>?Wi{,%\&)!)\Ois&rKJX="zΠCK޼}7^%eц4i֛im.Gֈkpot #o r< C!yHOF4}& 2.fdj[;YA !)pZV L} D{Feu?T |#⾅(֪q&PkVA xKn%ܚ(O-Hp垛 fewx#f3^xGZzJ>Y7ż &vROƝJ磎|37^_#xB}PO|FH}u,C5$Q}=@h^As+S:|=qo_":z˜d93=5Myhp?Nc/F̕,S+&omf^3>7Nx"FOGX]AqiTf?7Q/F\74 [*k+~[L9PdK*w\Ekuȸ< SEn3%~d×fUXAt~W4|P:g+-KY&Q8pS ^F{5Ͷbu&jQ[{[4h4JrOsl{5QZ>,:ܶjwG {E5^n7E0qkf QO-pw-CFK|R-$=K4&b3Rri=t\@0: A&G iS=q,aTb`-Ӯړ]ΐD ]䜃jTx#M3 ϗa.$<]Pu[Fe*Ӿ Nz}3]\_ty0&jh eљTA=_Y)VfQ w? 茬OucL@T5|VqaX%2}jgr&nMGq~gU8 浣g4zA#(Jx}-P=m c^U/iL;m=r&q\ߏ{a:{KsוscSδ>}@_,4"̳igw^ӲԲ!ywE{ֲؠuR}d[lYVI/|j'gUpɼv|dQ~937hGITA+@uJ-o̅ PvG*ަC[T}k.(:u}ro .6DA.^ Bt,9οvB9}$;&C9B!(Q𿢱oA$GάN_wξJQ|_@uz{_gQ_i1`8 YQnn c7V#`T{JN;zvLJ=*N?ٶ_ wQWQy]TjbB}w7Y.Dr[4 l=mMmVY45Kjk#ϢctĥèO\9:=OXލb(IotޛD(sѓYeo7"Zsѽ ͩ+_;E_PKE*LzQAvC}>G 0?q{hNAgOgE{ Ak#*RWn;Be+lח>Z].7Y#ѷts}3PeKԂ} ^+PG}tF$Qi,jiTƓoI2NQZ݈>"-n@}#*& 'fL_: u<¿fD?]h3 Fߊ۠5t 35iV6B ^݈b&D/e:F85]ߠ JK_TGTuoڻ^.Ue|7@5,gw4Gu5c$ !٩aN=GN\Gs%d8:I++@C޷;jJyh²Jh{&hf`˓PބsNF5P`?2)F Y*IENDB`lyricue-4.0.12/help/C/figures/docs-bible-import.jpg0000664000000000000000000010317313053456656016757 0ustar JFIFHHC  !"$"$C"a !1A"QT2Raq#BFSU&3DVt$%bd456CEerWsu+!1"AQaq#4 ?,܌~fcXbz-U{Е=']*Bh lV^i eU@l:9PTH'}AֺՇ#|+". aSsj(,*ʤ$eoo2csUrvm]8JAp@^աh " _n z8jSԨ@ Ӿpɗ6p$&3HvH@lbTytn`J.%2{FW, IDz+GlZ..ʑᦤI묭RʒnkTkmÐtHnAR)Hnm_qm(jf)]cqLհhymC,:ږmTwmqqLj{MTB=܀e#}>#*#$H%EKN<[lr{Cu2kV~t:>KéW ')Oe|ǖ(FRҔi;h"6]ŵq5o6ϔ4Fdx05`59qJ{Ez '~эߢخ42J4e iZ :E]o^,rpb9n˴m|$s!_UA[pݎCnEqEΞ̞Ra-)AIJ\ojR:brHeIu,z,t7ECpA~FY&U%%-|tP T?/3Km.HymcsvL.I]^t~<5V-u#̮TXfq fp U ;@tcP"@$%%( '@ ]u%AڤμfNju)L+u4^H9[b˷r\k.<&E)*F㼣@M͋ȋ/-y_6ԇ J:ނ7GC`j56h͞nS蚰FQ$ k7qơp38Рr$)-!zBGC}*NëyZ\",[xGa ) %]R b1[cVS qN- :AAedF5̪ ,uAqtyu+{,G({t_D9NrVY@lttonc1rkU1rwM^xIoZ,@ CZkVua#j:I;޴ c6-!mN8{#ǻUqY^+d7T5ѐJ -ی1_0''Rm'[r S"JJ^jZԕ@|K/*hw%ŅCJGwҭ| \ZWxO2#P82R\Hځ : {vYlmߢĹ 3mʘT(T(K)O*zjcޮ e >iCZotޯ&M}tK{8,I =R;~qfad֋9'qOAB|ҝQeJO .Qq-^.Scz,GZ$sC\'Z=(2ӰKk~RRZXGEӜ=s?H_j 2ܲWf.<\:!CNv7@l nڮ?m 5$h=9A%GFm]WD-Hmr RΐE3`Y9 -M- PD) skVċEwn6TJAn2ydVקuSQ> k5EH z\xGVԥsg韤..8i ֢ie%.ԧ:쟒CAks4pr0\{l=%%)#gcm8z]4W#5{2|ook򍞽:I_Ẁ bco >J{=( h#aq:퓱A .8ldv@Hu%t424un+:^#ٝ[\d^RQVҏRWtXV}:nMoڜ*=:V/R'N" FrCRx(;ȩK f,vlcsl1KR#N$odҭ =\c~M*$l m #tG ,$1m˸¼DfIP!]=9uZZx=}σ}I-Y",u1Dؙh u(nK[)}I}Y;f;1+JeJG:R4j}fR$* ǹJdv+O]7Y,DSJz}5¸'I|QoGvcO55AbN]>ZpӊBҏOuxnj,=eEhڔ@^$l4h#{c#b)ْ;jLIBҤy\('U?vɢ ;qyIJڝiyHQN(SU.\e,̖E&hdi@pcCAu f\K<zM!|)nfU n*JVGf [y?}LR(2  [@$oٙmقud%(unȸ]PڜD&ܷף㤤([]h/|bnW>$c|χ]x7Aq굞v,*tvPvˎ scj:cQQW(kdQgE:(yJJA"[XQ'Z AХ16"aKJE3&727瓴D ޜHAxu ̝8\u,ǎ|Hu_%;t~$ Z2n\ֹ#8O0JUh%$ AjlnY-eppG9rj-ۮ;B0iTQεLuvN]m-[@>q [IJA>rÈ="M g"ɭmĄLvRd*0QQHJzZ/:Dk#/d_:+ݣa_meRxDm!iLe3ZKoT'}Kq\:xk+ v]yV;6N &Yղ燿#ȲcfXN#I1u$ Y%5&]c;dGuɨK|Mg젷lnX8 YȻ]eKӈBZa[.Ch;$0Ow(dT(֕s* wkHuL3b<g|udcw j*%aBET4ly yKUJT6OPzh7>/aelHJ˹1hJ m[to|;r[蘸RR)/^{)>`iFYmvuraG},)pyVRtAeLnn'I#ߑ8ح ;w($l [dq;'Pi8ړ)VQ`Qz_/cN"cɕ=n-V- WE$AF1(rjW:HKQƺilmai[u<)WG%$ Ae*}h*/"²Yݮ2$VN@wInQAA:5 s8vu7QۡAڰO/vkUscJ]n!C%I*r[C.uȻ7s~X@y ABϤ6HM&H; W\l󘛉rW EwteN+~ _ .,?6ܱ@y]x8êt:}ա;]e8Ҥ+`H4 \y, %O"0m)[i轤k@oSL߽Yd\BngCm-*RT4zPe rkِ66|q6Km$}KJQI)Q;~Z< s\YU Hun% BdI4᥶s`)](+v.V-.X-,uc> eimmc-OmAq>ө+n;̤)[u&wEGƈo2K1J9XBy_vF;|m:w.-,>-IJ6@hr$ op x̉/<ȶ]1HYHJ҇7&Uq['d/!Ki\) s'dwsM*@!gO&bؗN^\工yb}6N{4i hZdo [k[)C(B4K;{TRF}4涞j3QM?z "{JrAʗ-(BtTQ-V&=*iSɋs//:Rj譤?XTCJKgiBE=%*Kz"'/ۧ3q]%/w6]2d8*Z)+!HVM}7< ƔɄ#ȶ8 Tvs-@\XQIQV4.oN6[-dL κ<(HN=wUtn^6< ru WS;իg4v-Te͢?gqg8ճJJzCphW&Kr:n.T#_vBRG@|/yQ.Q*%YPK#+v>SYB 8u! 鲥% xUf)x%cw(An T+c[rrr)rpK2Hib@N7N6mg3 dKA\//6j!P3~1qy*Ytܮ\/KҜ"5j-?)B:#BDd/ki q(1H s'dwsM4%'1ʸ@FF)1ĸ`)-GKe%)sdRK]e|n$V=P b$Nid:rUܧmR XIqz*NΒEl{ȵܢ32$é JQ,|&hY“ hkiVۍ K #@ kgtNm]Ii@+; l8m.丽z" L|L6H:{ÉMcobec;u-DfGjyR1zh'SIU3qq&2Z#.x)VeR:~7b|va;%1*+:ہ[ H%'@z O: 1>\6{;e!n:$,b0XjN(;{]dl:-@T: 7+[)):cs@_A_)L@[Y$l4$(xۗr&%<rD(\V^cm#GNcZMf`9d{Vv)j/$KDeKl$ck$tЭ8&`TP?~ZB Wn]ЃHA%a=^$m[[BnמϟF ;;A[orKD j㏆_yJI׆²k [sTd뵶YZt;'IU;pO‹m܈A]F:w-w(|۬ Q?\V^yT|`[Uϼ[u"1:khzӨS|" nZ5 zꐧ *;NA!)$xpӆ`r[&./g6* _|r 2 4Tk$tB{V/N8e&;qrUXBBVX$|WZ}5Q>ViLO S#Z,zj)mz/˒쿊S @z֏ \ Cc&m *- 1 /`[>i=7$ŌcK.S5qO~Kmu}}쑹ui;pU7 LoII$ x )rtQ*E S}CqBB{:ވ}u[o8=H @@ \wӅNni)% T3>g>;Ҥr'\`ˍor#w.JLw$- K-ct:ߊUӖElyK{ߔm-[yωU27Rܾj[JP\Oh9PR4#Ef+Ye:\N ܥFTHD RU[rܵ܎Glo}7(9򾍛6.K9*hd\um䯜#n7YsV-l=W5Zq\.BP+F=Ke[%BԖ&d㾚(0 ݤܑme҄D-JYCEYښQ)?UL~ɠn?ޡآAԄl8 (FZLnj<2Sy i-HkPGLII->}dTMY)QO-XE{UA}е>V9t 0_).6|7|{;E b3WfnFJimA-27˭z 2uEήS2I\H) ]=#MnBʘY*<9l5FKI6ԑtִ֣HJV)Rzkqs/ !nJ TVR,s4d,%=O^tBuM}$lspH[Aڜm7V+Dt޺؆IN%Ur\$r @$yĊ}\c2V6mn2f 6R$j:麂&7>5,9l5 BmP À΅Rtzwל9Wmᅶ׌oerJ vkq )MִYpvk%Rr) gTF)%DuSA&6)>S1cIIu$(% ӪYg|E9䶥&3T%][> U6QOd6vZEsv2n 75`PZh?˚%Gƣf\a[%*[d`ȇ6O~Mg|Cj[-xz.C!.8vZP ~J:tp-kmdˢD6T{U!jCI#~$ bU-s UY~[|ΘELFqҜ%iF]tye[YEN>F)S Ԯ]4@ ޭL.DTıʮa[־RTe~%*Eݸ%#>T:me=){#/}u,b^ynI?8J12_ 7'uQ|K.jUe] +j#.2޶h=يkpGOXūȭ?iGTh*w*C( rկ3HRA0Oy8cc֘ۃߦəbb\ ٥)JOfcơ/Ĉȕ%%8R$}Rr[fY3ruN+E5{%8$6Rtz}'j.rC1d]uը%-EMz?Eucp܁ ٲKdmNB޲ޏOuRn|QqZ8W.m8|v MyqDwP^R[SDvBЂe!#@~zX!;7&0#Y*og\ﯧx̻ts)#-1)+-gG@!iQ _($OR;HgPU'::뿙LNǞ=ȷV[jŅ49d;ЃփD4B wV;癕ݲkgzOfg29a h+ DS.V'i][ZҀt莽N5ХRsj[M.Oğ5Su;C!dƓ⵳ͭlfP[BtoFgZ.KJerqr+3Zmn˵aFrZ-HO ZJR: u*.dG.Ф̦qmbvPW˿&C1c;&KͲ(+q$ z]¶7n{u=7ylln۸Yq,7HoQ-jJˋ' ց$z  AUfuzƻZ  8ˁ%@1E~Li))}6T<6#u,_Lp7on66;^gq+JGމ&xJ3>Wio*(/aST=V56rF 栋q~)eԩ }אP\YYH:h*:iRez3kh=|MM0[QڔIi.ͺ납!@_J6vSjA/~>ڐCҫI]<(BTvPOQM[p=)P ك[ak\ZݵRW5KHQ$%jP*ZF5jCʞeJC~hBפyB`1p:vdݑӊl(I-I>\~ *7ᕪ+9kd% RBA}tlr.-aνfu}m.Cm :z:sM]E&RJhӓ@a1a.e*TYK5):)Q;:*;,FɿLh|&?Lh2CaUܦ<ʋ\]pFp8% Q)d׮h1EyZ5iuhre8,h͔y_dwUʴ;B9w$Z}ݓ2cKQik'L6/EUb|;.$:,$DTQ%+R9HJE=8m>oN>c%% I $g};x?N(3YMLbtʗ* caLG* -KiCd:wtˏ1iI|zB㭉RqYrfǚIqA $:qNd:g}%:/Qu e.;&>?nzm8C4:=Ut_yA!3ؾ򂗊ՍiVF,k7H#6{$J۰ [fdKoS`=S}Ok%L6/]XR}xu؋2,d.WEi)=65Nη֮*D Ἇ7}^[^eTi~r܆dމ)nviA=V~QݦVjیZcc4J2vGI$W7.'"a}W%1{NJ &G[U5]>yR[Z HO.ƇE˿)/?E VRΒ)l>65/_Ƣt^J8? *"5WBfXOJH5Цۖ'~Q} $y#: 96Kh|$ ./= U~"Yqi?C\7/պA̟Rէ'mACo{NTrbko/V␴,9~wA),[_,!T{JG_@o}f;5ogP-]iDyO<[ٸԩfy2G28OB:hH|Ml_N=sgv.:h\d[m˙hZq%Z@uAhKlwCYm6p:c߅/&k1Zd-w6{!Gmikò\4dpaRwKF3ӢAI;9zyZ.lZ+eyDuKy$pwPjbzkP; s*p*О&_p~!gղPH/j?VW8cĿ.cYbdbyK%\K^(zoU/\R[r+mE uFuܸ)XFBEKsn-(mVorI>r 90U{Ǝԗ\[-R҃|ӲtCCZߍTVd1=F2*P4W0Q\dQq47c +6x4h m +AZ?=e6!dgׅsJu\h%# =wSe,fy 9Pu@lA ւRPi)B#$h ,Q61HBS5 QbvY7=.ȶZA,+w\W);'Zh@ 6Lʅߒ95ֆ@v$(55ai:]=O0*޶u4h-[5þ0r۱dN[m"%)P w5A{aYyT{8AzkM[ap$P|J R1dN3bGL,ءGIV 'zP\+x{C{ K{K-C #]:Օw2;x*e)O(e[ _q =Z qY]ׅr[򈪺[!jh#! PvzT=bXϹA:솚eʁ?q#D/\JTzokMhzݠDJ[;=Am5/%7QݚS[:]B )["B,PRAAaጺĐ]6\I+JRwk@xljFۚ* w5\8BI9w[u$[뮥6,yd AŞ^nQe䯳WZ=h,CTd/-on6]m]+ͯnvzh ӹ_&Ĝ^!RoqJJJ6@P:=tNh W+)Y#GZY\ }-5約+z*^w7%dW9FDUKa r$7qwnbKWH3%\8R귭$J=AQcC20eXDf})[ []}e|L/z~˃&De.H&3i)*֏2:uV8d/XZs\h< !il'ƃn;j䧐Se4S.'ZlT[}dQ߉/[uKJ9z+/DQvAlscB:tͻ'1d6Yus%h#`k+s|V1E 1r,vA_*QIi8ɥgC\pſ&qi s}7$w(6j1mr.dFRRz>ځhñiLGbʼըAwPYf':'إ_bpCQD=h{ƽ;+Ky'[uhBdV箼-SɇrC-$lO6/{_'^/2k3DlXmҖ[=:lVGWjX aЗe- NIm'[QSa{;]a._xpxb =6džێ*tuoªV3&h-1N%6=4 }X1l^.Gjj J,:5͋Y0W$=uSʢGq~.Pdgnalۢ5eKYa*ZNKk+;QG0iЕj:3OyFAiѱJ6ߒ;U&lY̸/%(yHyEQ-k`po Q~.(ySܴӋ ԍlGPy7s%ّbWL߳܈ʒ9S$t$sxi|Mne+.26%Aq(s@6T N=ʸd8d˃ Te=-IyBh@2TqV"nqKXM*#0*!;#oŒ2*ͽEcZڑmLkRVm >rB>YO %ԫf+ 9e4*Z]} (EE:zilNEР葰(-M,!?-| \fmhf=vTJ%L<U j2s#-rIH:=h*;H]&?!tv}HCcdMpiEc?%}DIiN%]d,-4TFҔ=+~irR؜쫕. K YFڜ*EJ<Kg8~;qo,%rTbҜ%T|P=CA45Ĭkbj4+VT]yEIYB@Nmpp,"N1na^iB8=A/CF參8DYVYY:+Si\uA'}5Ń!Dy7[#Wt9Zu~Ry#zu(<sH.hIڋ6aԂ>@Tt,xQ#6{$nUɎAffcJbaלpKJHZG>p_檉"#Qgڥ mDא'*%@yBT|۲Wgj5PRmt )-1pVix||ٵ 9&t[d6O1~ NtTЊ:f7]¹e=i%oy5̢4|*EN7ȵ%ɍka^Cj:e BԖUIJJE7|77.)arhT(M9lae6U'(ғ6ZږW0!.եHGR~?X~WoŒ܅ҲҺTWMtN`һ\L.?-mnEBH'bKÈżr$ۼXa,uM%zh e<5\K/:!nkl$r4Is[і2Kd[FAE)PVh o<2ǁĉh/}/PmJv2V| =3}y{(K{ @q-Vq ;W >_>C~@rj#jea/rs)RmDk~b?d7?nFz@ADBm)g]_vPdWl+7z\Bcvr"S<;g哭fnw{v$2ӓGj1ㄡZހ;J;lc'b덾oS F‚t rԎRL @B;}_,d8YF`ꒄ'_߈A +`w  QKTJz!kd-N2Uʭh0Hf?˿\d crd>w^w*[iH>jdW- P :m~?*_WB$=;nqB3}B+d}>R>jqoq[c=c-^-~ۯ}3 oqJ Qx{׃h|_=_mD3=F(=cԭ>ָ$/Wd=gԭцzϩZ=?WlH_WHqpMlL[E\l {APA R|~CR|~Zd/dJHߑZ=?Wt&}Bj7[ [.ˌ Q?uxnJ[Yw)n!LO{|~]Й Gvhٶ{JR$d $m|~J+I߭cW;-5 ߹Ȋ]m^)$grͱ{e5ڡe(%oBp@A;;:PQNtK)_∼7Vc=krڌ۠6jntm!{D\4׿6BglҨϙPߒYG_,VpNLH.P\Kh]Z77֒r[vOBeMk}觙;q::g?l-zPqZ&\wk,9@]l8h'}7R}r Y^u6q?Ww_W]ۯ>?3Vo>gԬֻۯd m|~E$-#|~[n+d'?gmg,ob}PWA'(_W\d9dHXQגZ I==kP}Bz |zQNpϩZ}=lJ߫2Wc6cԭ^V+h }Y?>fmzۣV+k=_mCų({mKꚍ/Zԓ\wֶ*_WU^%5d0t;n$BOHõ~c %ڰUg#?%IvƁ^jH(l,FЅTQ4 PR!F T* $kтBMUf9@%TG#@U rm_!VVe7%T)<ڒH#~fώq ȖnEb \Xqa<;FS7.8Pǘm[ M2XBv֏BF|Sc-Hf'K(wvW/ׇw(%+^`̨-?{ \ȯmÓgKMfAp/=ِrCqyJڶzR5aæo<_gM6FJ9KmRI'd\% eG<y$w<4l e/6DH1VRY3CtOkޭvIߘo]qrz^PZ\;% ۴K2%6^mmHRGhD)ORZo!f=8K())¢4 ֺk](S¾#'+n$ @.R޷ k pKaEu e6>sw{ĭ-v~jȹoɊcJJʒ viJOfkxS6S^ЅHplMN(fA֩9,bJeuƔQQ_d$i=uȆW2ADwS|z߈  8pYmŵ,WVk JHZ:`BA)3";SaҶԕ>?17-uTP[nr2nD6Vo?ES5<+|jnr"T{=.-)!;O)v?lf_j඗5]vL4ˏEr6 06N16bɂB:̧N$:q~Nq)0%҂TU%!\oc{ۯ`9ELݭfDOo11ވ`@Q_z}vs24IVƂ:h Tf!Ì'nŵ--ƜY!RuAkOmd'n hJP;i#ѽD\OtZl0+S)ū-gJ$MKnNaC)-l+M%hyA/54*u$"TQJf@55' y YPUD* *W/=$TMQTWs<ƀ-U!#O-T1N)#O-P0¦:iH H%ڛjj [1+K1@jhM1q@jhSpw榙 0>{榄\^T"=SFji"k䦸\^bEߚ0;SL q{榫#ގG\+<|úRo5/cQ ȹ] x3VRh lHʵ6.q|D@^kaXIN$c\}e93wsm Z̆I ?@2y[pݥg[26 FZJtHڔn,԰BJT\iXO(;vln-hJȤm*`M4lց >K`}5"|ȟBl6ŵ-%)9Bp+[wz=NZbRlv|3v;ֻS m+j$)}DwiѮyv\vLAE"4qO;W/^ qG'Y~_7/ͭƳręs$;r}!ja +:xZ.fn %FQz&= aJj@)I$$TT :4 #Ƽr{72:ݚHP*^;v&{ܐ `6HR| h A|ܾg6Psםn"9c7 Q^BXRqH)$;ʊzo2I~TKl/G׌.c&ddRQ4H_@а\.cKcNr KiҊH ;|jo˝&¼kxtCdE}r Cq֮摢VI KdYW_nZE՚5qLDie FO~?EdmGY|Ȟ4Z%-+I+܏SX/^YٵY$;9RΜI$E=%ݱbqaӐ0S85~I=ux3AߚQL'X-dW6-'.2FI>cQmIR8?4tpJmv90lq/F~DST4 gWۥ4.1Zo!#!1! HY;SG_1$[o$l{8}c{?@~w榪٪c u2էK龄AAƍRq01x[ovP%|!e6$k:{榁W'ji y54 SL鹽SP٤^]mA:2"Ij˿?E_]T ABǖ뮱!:%n)d@H RZ3ْ0{>_%l/ْ v2/Pe._"TwY~쾵+rTPl+r%{._p*$dv/\~2K\uA+Q?,>+s=l#e4㺛ɷ2$0zL%)Q^[`u)ɬ+s=-~칞$ Z!ʸfAԥK|f]ȣ K={.?1W{eJ TsAuspg?5㾿'S=wƼw*g{pZn2LZ̓ eq^~:VuFz]$ Ӿ6c'S=seL4k=Pmє3:AQ%)liwvK2]ˏظ{Cf;}3l}zO{ (0@81Xe zGAY :Ļ-_;˃M2"CUz׎eL5^쩞m) o, m%RTr#cPG喝9TS8unZwGc!::=FoXTs]^ʙhjee63im)C H$XJ^tDl-A)Zi?X+S=ߖL4[ZpQ1<ZU:RE \ əb_r[몏9N=ҽ3㾿'S=?H6x'Lf::Pu2$zgoZ)p;ӁJ“1 %¸<aJT6;HS޿'S=qOԷFTHiKR"\0<w'a +FK٧m=2v>4N=}3>˙h"!H;e*4 z5ve]]gx%.*LJ>˙hh\s@-IREm .Վ~Q칞8p\sA-@Iߔ${.g9>=BG{ UMB>3cߔ${.g96?=3IhÒ#s=[\uA' TYl#ٓ=[HduA$@ ToKHduAHduA"hvO%XrO% E)r/TVAxsHZnfPާ?~ǗIqjAν46Mmˮ0ӏ2Yuhmr(uݺKJv9 :Inne L&]Gbu,ٹW50nش^ZWe 鶼)I x$ +A %DTLLK`8;D{IR5eW ݧG[WoeuȮ/iԔHBT?t.8n{LywYWurHJZ6*] h4঳knaPtS7wtaͻ JH Lu{X soTKˎĶ{IV.8mE]LRmojCRԞCujm,2n8˱˷<9+Ziw[z>IGUs&D6Dkd3đ/HQYP@I9JP1x~Ww7iGfylt%-[a-!(YF!kTelvnWֻIom;6:Z b&_k=0s/$U.+jjt8Kmo(rR#ca1⏲ǐN$- MI IӨ>&/rg˭ġB$ Ozgd ޚ]wK췞A`η1q ^d6AA|K=J_{0±R9^|gWA5p\]r4pyP- OU$~gޓN]#Kj XqN5ҥ+{#Р^X;RoRmeRnK>VʀTGGCH' iOKʬ6)pW96D%D #i>_}Ѽ"nRݜ-~h)õ%⤅k𠿌')~ӕ(ŽJ_{ʗQ8oR9^0|[eNW9A )~ӕ(Ns=+T==c_%{yS滜A|D=F_{دKyS<MlWeNWzi;sM$b+rL>)v xwJy@p[e{JWŖq_aGj #l+0.[Tv]+k.߯33 ޷fk=ziM]-Jmy$-ԭ+X@ Ru9[}QH [hLx^ MR庭Ϊ-Etvů [ZqmC(+r'~bPu~4^ Ś]<',sa"sJUqCh6ӝO\+r]H^E`;9g^jMxuj"o.3KGeNc9j!Ej;Wf΄חdl 9t$ӷ֒)߱uw%Lm Let~o)m'誮–k'ɾK5 +uAn(qS+N5 h#@fmDɝruhw%2Yd278=5+NMeH="s#ILAnm@Lc8ww|GI8\ XuU,*;5,SA=kĈrsU5w(P˫YRl) Rj? UKyje-L.u@WZ '!Y8Iv2;-YDL%1o7#a5(PR9+dA`j uROzI}j$z堀浛7o{(qPζBY4A/} ?Qq3-q"l}K'^sah$6FQ߽ 8V5.1.f:BPY: ӢFg|,f.\KZ1p`+ɝ HֿՠQAV,6ⵒǾK! CLMC#c|jkހ;$J`v4v>乲*Kqݲzt#ʑUG~5T :h R?*FuU" GUB$j(Q&GUC/5TUQ#u@)WyD*<ƪdj2?*RdP@#񪢙R?%T*T?UP˓Q ;TU "@c2OE29TM ?UR9TCEPA2M;OڦT#%21#`@m}uu $oSx|;~%1k&=> h2O} %DA"AHkF\7a-oJI!gJT5Lq\$Go$S;χ>imC On/(,~* SI=iMIؠlSE)4B\E(Z#ƒ)4hSQGB>Gqg}]LWr_)1  >6Gh{<_U,$ͻ@ߘ,FMPVgsYf"CiTZJGD]-9eA ()#c~*9zSj_M&ՙ5sDī'6^X*Re}!+r:WZ@ c3ݟqfLLB!)8Uu"sr) 3f$)ؗiLC(ln+ ʇRfx㳮0Uwt$/C *QZ{Px]6 9܇8rN+}zt4ʇIԤe$*T 4 LW!ߺ$F(Z~;o{ĎBN9$^ ؍eKC[lIu!ğԹE'PD{}'A#bOcѐ΀MO!2F?r/lO7+9Dfdž жIfOD&I?׫2[B{ d~G̟i Ei *QfNfbw\t ..1t6y8R{JyA;(3=.?yq(gUgslر](I qK~Oy'#];اӣ8N_6h昉Ͽh[>(mc3Owڿ4Uwvm~*=lOf{ Prۚc,iBC/2:*(ʵrLaWŧ*]woṰHiԣ;4M?p .<.nkSn%oܽFsnO2ۄXοYC% ss+CpܕXfm{WJ/=?{E밚nnOkI2[+=: lhU4o%L3#4e3ݰz]XeeM?LESN>N%XcZ2,d*oyTd@W(Pc}u.]kE`%' Z@&..D̬KIBx?t_o ğyRw+3H:AzbO~Z{bONi" ~Z{^O7>|NJh4/ʼ3OҵM\Ѡ/yS岮Q xs4CjxPE/uyyFnsR7k+R/qhB#TyyI$:?!ǔС0ZwƦ ~b())H)AIӂ"@Mw-*SAҁ")M,EK9p1|Ɯ %?Yʹ/ ccP4}[3I.d e;o~z@AqCrC97뮟ӫS~']{lbU.Eshڵۨx:5ȦcL IX oa?,F1;ii$h$ =#ŋslyz-)ABZНh腋>nguOyE8|$fZv$_qNd y7*YR{,'8w0\Ps9+p~ H%)T6DaEADFNfY5:፦kso-m*bT%*(SJRI*BvkCu"ps.#qݞͷ؈k~U1 P%v9#Gd;`Zb;縶ظƏS\JA5}ma1]ew݌At'9KEVyvSFTMah3jPSAV>P)G'N>">甮iQgbj3.MZveAg8m@hxX`eUeDmIzyQo\t?׎SY~iܭ)b$y.\VʛO=W۹v-bUɢ"'iYQOv97rn}: 5!֭6掎P;$CG>{]?ib.8KGG[Ru>]"fÆ2:[-8*4;I#CN;5ʢ{_XAư\]Q\L'}716> mĆ[rTVd8gqj;2L?ó$wj{6:˯4[ChiGmDd)^zVTF e1MMɔ.%rk%'`) |CT{"~t=̾&Zr ӘZpm $Tpz8{)=ګ>RlE{n@ԮEJ[*x 9ͱ)ΘxmSLͺTʶu8u p)O@13cܨ5b:F6xmHU#}Z>^3%c6u(G~cjPlMe [#ihG .L /,2>*x~bgKfٌq7R .J!@#ihG .f3'YTN'&("1 @:d}-UH|`t6h(O# PclI0&#ihG .o#V79L%L04(PGT]@D#W7)<gMLى$0GT]@({< {K@R<_X?1u:d}-UH|`U#PJ GTmJ A(TeK 9ޒUHN/I T.Tqyok?7_,W5zn@Sϯ5}jGLA͹lK TTrԿ@'5gY-mT]4Ķ56{-c~sS; /8sjMe(R6C_b#U R<_|ig g,wԠR<_|ig |JU#ƖpwԠR<_|ig |JU#Ɩp X)7S` Z38`}/RUH|&PÛ19efcP />4)ӏ::2S.hkFd )  (|JU#ƖpNH&aM| jfC5P />4i6&kFl@6[$qM@Ӏ^K8M/@G"HdC*y%"@^K8MP $>4^@K8MP /S;8MA`@\=dR4T>@*r)+d G= u'k@*)o\ BZ{R\.+P8f -7Qfsy٬y4k|~s3lk7V雋1d$9|R-HDeZEJ-l&\^^{`p>" ʬ U=cFZw!tg7b[?L!o|9"E\VwuY۳ ~ R<r@* #B6FfY+ Y/nÖIZR<_`5dsn{>&K.Ӽ lZ BR1%ICorBzz1B+W@".G\lgZWM.ِnEI6&Ƒk23p[G;kc@1+Do\y_qRjYiXn Y>"^lWFUa@_j,OH%L8ֳɯ`ɫ̽:bbqE"̶q-VéM Lto77S7.+ޤzjz#5L6q%Y rǮKS%(HGKBf.ֵ-O3xd%̋}Z,{v#.129ѻF/YVe=Ꚗ%ZIٓ+ F5+l m2LP&_ mo\o!5wx+66E/Cago5.DeP&[Qύ-V]XNPff6–;su/ZjlP&ZG::^@ V%!HUjRRUPivdh**E (&ZG::]dhZSdL LĘePH亶ˤ"e g U=KzG=DžbR V"*rikҵ8Bkݺԓ*czUi+g/ѐ.[QJ^ -_']K Tk53^l&+#=1zs${؍|[1zF^[u ~XIs?/[G,^7YjXc<7d#+ZL& bΥ\_QsH7ܗ3M'u)jZԠpcv_a>k>3 AH !AH))@X?_|U@xqOwzf\ob:|_mTKb@P@%1 0264@3P"#!%1Ef#kb5؍lF#[kb5؍lF#[kb5؍lF#[kb5؍lF#[kb5؍mZg\_K]K6ȭ8b>Ԫ%xıߩptm*Q9$SK aZò]4G$*E7LѿgϪ\ ֗/Z\ir֗/Z\irnI0lvshxϩ74ؖ;L9OZ\ir֗/Z\ir֗-7{ǰϟTjߑ4L罜3svo/a>{7ϟT=gϪo37r=pcEfz[cIZMNT[n-sBãsI 'Ofr$Ӈc+ eq|Á,o2I'fGmr>Rx1y6mI|9N ^>}S_D:x \935v tYԒI+̗]g8,m_,ﶻ{}Iki2ڻWqٿܽ|# jpJ {mF e[ɱʒq:#8,4KV@ui6QUIl:7ϟTGu%4CHCKZɪ4QTOQ]]PDvSA\;ƞaZ}S_o/a>Q)E^ mQ [ YRWi'/RQ*$"J"!to/a<څ\cc3b='Zݑ,Qhô)H*Q6ҒE 6(S) CdMP )*3Dܸ˽ Ď/|!' \.#Hfi>}V<]]Wrܷ/s)8Ms5H æ|+W \2ep+W \2epnx k}amdRo)>]/Y.KK%ztL|{z;^pghrA'iw,|]^ɒU]/Y.KK%ztd^]-s6ӽlvOe=uܑ.q&g:WfHgϫ/~fHgϫ/~fHgϫ/~fHgϫ/tǥlHg,9yzb-vl: g1, JZƈ.,i,kBM3GvBHN>ϟWl_dbH_α6:&e4[[gc,3>ut5cnPtSM %Cه:ΞeE<4C\:ѵpvg,7Vv Ӈb}j;Ԛ+Zj}j4piL5Uz@m/*Xld3ه::`'623fSwu-XYKT/U-TroZ*-*vi2 \KbN>ϟWl_dUZ\2qJtO.ڏJb)?$TQʤ^*4hĚt] _%,UlvN 0c9O+79|E/,l 6L8f9+-͋>0o~s)=}#>ؾ]}#?/~fH?ku:Ecd#/e`3FmW_V\r:?13^5HVY[}]}#>cueN^9z$蓗NA@@zl~f\f^nzX_r>ˌ? Ûٽg'@ɻ,$c#9C.7k'/DrI'/D'(+!P`r )qDNg..%8NV67V~f0<@Dd؜|~.߇/8-}w=L "ȮEr+\W"ȮEr+\W"ȮEr+\W"[X~16s 12tc9H2FC3օ0ġ;',-gɌwqg 1cǪJ؇uǴx<3B 4+Я3B 4+Я3B 4+Я3B 4+Я3B 4+Я3B 4+Я3B ،w03@UJB4F瑠59Aqηy JPCɧ08]yt@^]yt@^]yt@^]yt@^]yt@^]yt@^]yts,ntH됟a[-1GϊӠuUDL< yx| <1푓e+$d\2dlLk>~O)Ƴ<:ZwH5>f2cfv6?t9:HɎ?~[Kim-όuҰU ]X;W[ȅ\CP!,(ǯFlV[+elTK' ;1J)K`cؾ[XmOȪ {KsEu n:)'8&IJ|` &խ,Eq<>lOiuN'eY;xn${,D BГDx~5BC- a7^>fbIĈ58d!C(JS]@OPtxx}p *Eq\};Hr< F{,6X@adL@#l5,Ig=A_c+ &(Yԥ~ ƨeS؆JhOuXkEԦ930`)'6SMVg;6DVjr#Oe:+d3M\!. hMaM`Xh۠!*C 2⑏fTю`#,P`03W'' aȂ*(!-5RUG`+6W^uSLSEnߋY;͑Z 0֕0&*O{{'FF;Q>~r"]a[; 95]t;y5eT"ޟgE~L6q &ԔhO7M$<✉EF.[L`1&7N5SzyO3 I+ MZQ,M6: }<&;VO:4vPO-*Cx|ȍիC: dЬpF5=+Ծ*zBE*8< VO:4vP .*'bvyѷJ5oW;olt +TwƫN^5OZqsgEs4-r WQ+wď7EAoҾKcEx]Mrnvc!4 i뚨?e߼T؆JC<'dtKwLwbmEB*yqThnC{JVWZZ{}Ц=Jʋ5&-+CWqf+5F+zMLWQ ĸ#_nHQ_諨׍|!Q4o|j|rF5QLP+UձZpbG|7Oڦ![ͪV(pjoAnmE档{{Vt+ZCUL>6i|ȴ6"T7j ꦭ )zޅS 3:niJ&!VJ ԡJag!٩4O,؅`ϺرНbE$M"(iРVⳡXHڂ[TC9s7|DoX? 9kDV#/OT؝b#!u">mWQݛ&4ofj.(G*dtIC֦SfNP؇V:uᏅ2BAR|Q6!1A2Qa "@BPq03bC`?>E2f^/69QR"[T14{TW7ƶhZ,0$hKm|FiwT:RοVX2;EJh mEV&?WCqc[P-lthm]oR t+;5x;k3h ,1~#"eGg+ cp JܮՎ6F6;?]*C2Z栫#?.~ ~)&%mϫ"DacQc{$=y%/^ %rVTGWʐk"W㾧|JyeMKRn΋j\,*+~Ƭct{&t=^eQY6Un0v3; 3%JP"3;JB!+]u+2WGbmO<ƨu1b`gcJde>]r La:ԮGZ`'D"fe㧠xC*(#_N#R ʨ1.#K ƏZ?LQl ~$;5R{$_J#x EZ<xE 5"De(TJssm&J "3EgEz Zj쪜F['9 t8ȗeV`KEM\Fʑ+CDqdccN/w\] d8D+*-Mu4Ѥ*bZJp)BӜȼ^c*ziZ4SnG&EU?>(O  !12"3AQaq #045BRr$@btPSc%sC?r|}q 6l#`F6l#`F6l#`F6l#`F6l#,:.k[ˎ#|}-m BVY$*Vq:HFhΚD -*aۉq I~%KAJJw"@Vֶh=JՂ]Oq!$|]}P JUJD4@ҿlLAm}P 9nt,MR]i T0yD) M6zk *uZ4PʾkN73Qm nCn@!760!s喑YYYYYYYYYgyE~c/nOW/#^n ҇6[R&䄑bRKP̋BxI>+?Y>+?Y>+?Y>+?Y>+?Y>+?Y>+?Y>+?Y `q1©Dig7s ++=s(V2;otHY517*>֤~2O/̹c b'C9кwF_|)&ĩ$BN*۩ZCrʼ!|`e3PsÐ:sXDRmG!IS̨Lꡬ4J<)AJ= H9r qY]-UojbEaÚS((4VWzPl$$g!N)NR[)UtXZavRe5)%~l:hK[JP.P3{G(CTj#/l+ ` y8\ yr Q MֶqN|kyCR@P$~2OŗNC-4Mo H?JH)X '.N2J 9eCVO5)'Zw )YC E6F*-kXHJRs‹W\@re96g)+AUCj-EkP?*J[@!L^s]ZV1 E5췹DԢrTB!Ż+sn\ a|F?yRqKAX:< )Xp@)"ǖ%Mc=h>֤~2O/̹c-Y pK3%Nւ(K;sFYtåoM+be*z#ȭG0y*~Y?ES4 ~Ya:OJȊ N3^wr{`YE55?qlJӑ c)QiʹvU9NGJ.͹O15_X61jU15W\5WXƫ]cK]ccUujU1m/ci}sK똡*3ڿk reJJID>e0U0kjϔ90>4pf"i  -7WU*',,_zW@Շe/JbVղC2JI[\yHuŞ_3lLAm}P 9nt,MR]iAyD:S3(q6 ŘyNdVqCٺi)~Yk*U:DNK-6*eyD!$Zi\\x:EBUHCئV(Go2N2@{(IU}R30UVXsra8ziX>V!7_~ZDŽ76QM}NhuiiԌ5q\4q-Q;ؖDЄ=Pڜ&Xm A OImLP_ZRbY7p"OUK*MRjEr1:::::::::::::::eΟw̬26qIy*&q!__2W5ZoL!ٯGvkEhYaΟw+G?[sϘs?:\sxs eJC cy<,jޝZW}lmXV5EjnPH/B(P֙טlbRƋ~np:0PcT$Q$ !JL!*ӭó@6CdqAD!KR\ԑQZFj]C꘳&Ӧ/ h*3)U[JڄTqO(J.9ty_9ZM+ E5$J|R;tś/K%T{\Ӗir|g6[6oi hbj>Us DH¥Mh|C3*; FKmi UI *UN,Djw*ؤ< (0U6֜Km^ADznvPmٕR|m R2&K~^R "fN= ~)4aOQ"Th2_C>aΟw+GV i+NFʔkxU"SLoBQpBʥYS yON.kJ:ZsF<)4T6*1VqQ{FU 5{a Rw6lO*fUjdA<JtwɴmaTMtɉU-rsd5i%dVCG&uK[~"hQu-2I^K"Wn[J. =,K|Ý>WAxE 3bQMYW/HPۉ u!jaM|&w\,\4am8"lJ@; 5>(qf%A\CN6BJJ]Tyc3M6 <=*l]bQ?.Ug1%jQO!BɊi:,턂X@Nq/} s(;wa)JЗ.Q4֕<}2!;%Ћ3w `\n[ utТ5TW!i_C>aΟw+GaΟw+G?[sϘs?ޠ+J`)U"+ȮgEz6j0a1*]~)8 %&hq@t !ETJ6 +mHRRPX#O,HD-eT!0Onlx@Jj(^x?V?V?V?V?VgiJuxmy7_ 4=*1ᆐ7Ԕד@_ a'ZGAnOr<42⍓)AR4'OBUHP *5:xaU6Wrg\#È lPRSA̟5=hAM)|rt|rt|rt|rt|rt|rtK;ta]-Q:zqiBQZ\AH5?W ?w &9At%Xlݐ@V^yB@VKh+!j:(T~JVxEͬ,s|2x}tʾD0&f ]&v7~_>|c Ȳeڧ-*w$eƼG45酉Ʒ[7۸6ekit`ߪ1z6\=sgclm1z6\=sgclm1z6\=sgclm1z6\WXWиafc_6b~'BVsJAB HHO4cාlcාvwRMMI%@sl%]C4Q@mН/H4OQkɎ1!֥WM8@mAL*K\j]Kh73h&%0 ܂[mh>HIQ TɘJRlPQ;IM Be}=8v]WjUګ8v]WjUګ8v]WjUګ8v]WjUګ8v]WjUګ8v]WjUګ8v]Wj0AB(㎺R+h+k bBj {&Prl-TVrcsѥ5qa:!j!9hA0"T0m~:}ߪgXql+k>htkicX5cX5cX5⥼saDv?2B ~\q.it&gm r$ŭ# bK$A!5302je*[촕od4?mQ+3xҤBs<&GQ.C+i!"h#Q)ZTn9B&|<Ͼt҅#٨gE 2<ZXJ@IEi^(euH ťbyiD(ǁ(l 7oYW6Bm-*q7]O'veM!m^JiAB"q.>`~ӘR]iyDSeo^ ) )jו>]S j@q&yQGTj@|_OLңjjG1̸ 5JJziIrks L$،592YVi QZL()@)N( []h 4[Q\U뽭!KmTK)yro*MRQ¯ u

#2+}m$ ij]pSPIM&\̻k`8۸;QN' )8z[ )m·Ny u m|ugz"g`iaBJ֦TM ) mSlKN KE4F\oqnMo$:k &uJJ*y:TzsC<ˋixz9 xAL0+FC|?7L: NS VUH6IZBӄ s ^8+E)rW$f&S.ef[):qxm%]Jm 24%x.Ra71 Z[Q1;԰-"Vw50X 9j35l??L*/! >U͜E*~m}u o kQ &2j 󊐶!b9 @iXz( vd{ԯJ+du,Ь˾&Z//?0ZMPey⇥&f'r2S@!sfbe#}@DJtZV, q"J(#:⺧MܦKs3LKjv uF;8eӬ-C͗`f"]bfa˂pP$S2b"fs L`+r 4exa8l:ɢ,a7rJDL %+r͕)Ы_6;=>F2raJKD +O|%*B eWsґ(R ynG9o RZ}|PSGLnf-V_Yq(SzaX+K.czsm$཈!6CCJ3zD۲!S+nhHfU/PA"üMbL)Oae2BTQx gS6X oTqÎM=+kĻSK$JSiK8\ikο0]Sx~I:qk&CꅩYn⩕q֊7:kº6*Jq*: ƚ rӳM-U,*7CMW &?OLR# YKM fĺژV\ZB 5'/Te҂v][|2ҮH\%qMRYziP@Xiĥԝ㇛7"eX~JI-%- s!>M*2x:Ws*}h(HNVu9V뭇ԻŴ)I YQ~CK\LWFuLʰ-!K4o?@+i􃯪E#(5R9vw&E(5R9vU֐i<*w'~jaܓ.>QPTHemT.S3?~w8Nu.**4K9>eԺܹ*\3N§nLȡw q  rM34d-,S3*"&4SQq% k ʮ٬}TbJ{Q䋮ʩD8#LᠩImsqk)LQA(q³\DjSM=q.e%ԇ6M8 asJ2 Q4 eZ_UKJzJɵ|bmJ}n$n=N߳Ht*XV|{=H--9׾$]*EJOdx=lMJh)Y6)*v~ߤa0HI_D 40R@w:ĕT)' s5$荔)J/4Gh{ev6QGh{ev6QGh{ev6QGh{ev6Qv6QGh{ev6QGh{ev6QGh{ev6QGh{Dv6QRpT"T~ʪb0b *:iźWFiFiFiFiϊ8iFiFiFiF\4Jm&uK*O7O6DfO8&8uco }X[V8uco }XQՎp-co }X[p(p-co }X[V8Վp-co }X[p(QՍ#dxt ΞrBW}]=P s冊K3 <iꒆJ#w8E 4mHSJ G-`ե TAGBd7u gB1S85& 2O*_Οt6ɟA[(R9yD)tL>ËBJXS%lR8Ԫ\[X])Ur7qC-Mh/>b80R-N/zH 1i8LS;R+SK+ - 7*hD*_%уYwХRBfuVN9.zfx_%nq,㮫 H`P ꎴ1/U"nͼ%Rfo x!ng\9p}vbڌ_L뉬ZjY{[*|) !MڙhYh w%Vҙ[^Οt6dCSc~ Mvc&.zaqSX4S{@40fY\4X%v'RaIKhJTjf&m$VL8nʄFrŇ (92۪ 5`nv?Ӱ[m,[# [qd6P(cnfq{ajiRa(mOB 0Rl J-<PW.uo(F[x)X IZZe%6za 5@M6G4)M0JVB8e.O·%/0Ml.\У![痚a8 8Khh  0e, žȱ>ki\FkƱkƱkƱkƱkƱkƱkƱkƱkƱkeNPcs6㼔&6پ*GV=z;}XvcǣՏGoV=z;}XvcǣՏGoV=z;}XvcǣՏGoV=z;}XvcǣՏGoV=z;}Xvc&RʑC -C|a_艔Rq/H%q\$^ZgLO jDqKX5y1QdB Wcざざざざざざざざざざざざざざざざざざざざざざざざざざざざざざざざざざざざざざ⡩`~j*!1AQaq񁑡 0P@?!/$ Y;L3; 3; 3; 3; 3; 3; 3; 3; 3; ?L,<" wi@`K5T4F$ljv q 42`L[caaIdKbvX(. ȓF!*dH6r,"փ7 #0'&4ȓdI'}iAl};0~?ϟ>|#xyb>L#%YmvLل\pGEQFC?>|ϔ(8nw<&!r%cNXwdX-s A@w lӽ>ޝOgx~{>0ǣpdNG2Jk(g64;/Dy#}.R15} I1dOVD,^n]8!&p q%.}ar; z<@yL*$#vgx}=Y#q fɤ,wz\z0TBzި $hTT緎. XP[Bq q!,X&t!CvQMy=+DJ:#GYQTM`@#{9` J"Ōn?/oN}'3, rT oIJt=b~!džj4c!btR,y40Pm>|R@h##Oxc#B+|X$-')*QjOP$ bR ߘJH5Y;k R*rtrF#[3 he&"Y 9b(A i@$Br(73nP:N5ޕ  8!`)".eNTu! B IB$u(\8ePP{>*_|y8!`:@R],ݪbp]VvjBHgƝcx_="0)!n< /D^V.ޡ$^Aİ, PԐD(5!-3h"Yvgx}?;Lj?887oN}'zwG_{>w_{~_{~""A߄"!9^ vٚh8d '[_DѾ;Sh@ȢA { u8T^=B!. ! 35جf E ,JEaJGPeES h%a@(6n2)f~ӽx9Iu!00R0 +( q""v0m6|=;`&MQ(kb&Ӏ%4?+ dZ;-`xԂ*; Aر`1U4`ە1cI@," ?ӽ}**\b!E 5bQGM{/u0cfB5|5"Qbaሯ)! {8x&@<*Fi7d~*4hѣF,7$5#O|J5 9u|Ɂt ,ӽdӽdӽdӽ$2ipN-3DH4d2]L3Juր 1[ P]Gxq:@^ [ Dō()MUWij<%j S?3N~6Y,#C` F?E#0 ɁΈhDEnlưl@ l:5wByKdX8DBn0,/flAC0F;@(|Cd<ԾJ*(ṾDV`\!5pRw XYGGwL)1<`M0i(2F+ALhZ!TVXrz3Xr)@îDH#:SY"8rx1#T]raAtPC@3^8V _m!Yz@ ;$U [X?+N~6OvU-케%2 P\cDQUcRRwŏayd(0 > !YS@YZf$d ]d**pH6q QB#OJ!f H|+kA0@b` #;2_nJx )ybTZk( i_6 p Qј+9>M!X K[T5..jC\B*FGD7]#׾c &"*8N< b,PM?gey@D:-cv+eI7#Y ( m \M8Pe t`.TX:2yu"Ah0}J(|0[>* ơ-,U/dO(W2~lg?{L2E+~& L ,In6@i,E,#l7  .i^y7DszUAGh;l 7f 1w mI$E!Yݫ0w{¤7ZW@ѐ! =Wܫ'%eòm E)Of伱z1R@&2Hߩ3##### b+FTp@&aJoB Atx#d$1 P3=C \3-[d dc g=$v;}AzBrzL&kK~%lj(jhMg*L 8_b@2:-߰7AZKIi-%ZKIi-%ZKIi-%ZKǎC$z85d:ƺcXjgҍ 4|e=`.]HJ#BAS]D LX0G>=nH V.(`KD=7 bى^<lf<ߘ@@;%mh(tysiw\`唰 ,BښB c~H 3>J|)SO%>J|6 4O%> .Դ17qA@s!cיɫ>:^X3E"HaoT+0$a/=pƲESO>*|TSA$ 'a(6o=:p F<#X2eI4b `*57V# d$Qt b u]yǚfB՝/4P,0,PZ)Hค3,i° ak.ZSZQ+g)$1x}rrEc Z&M-DƓHt$9Q*T14kbQZ-aA0Gg`vw K > 3#cC"r5D}e\z( LUQAYIY h)?̠@ "YOͼ#Oحal(2Z3 0v:jAu 87!TRY. 0N^u$xyحa,A@$hv7GXK14\ʒW\(pଠV#DС^:=Az %XZ 2aW"ɍE qj F໛F0nBFd 2M7~<'),sɂLxt ˤ,Cņ#Y:Wô^4&f)BaR`BC9 E? @$ܨbCJo]bT^DxCOd P^Q`{t!T*0zܵc<}l]zI 4 (<2HoT/q"xcGױ`zQGWI+CuTҏ8u-C30 &4(I"{ (2(̕b8٥^ 6U#ezgA h8,y^ Hp ~ 5p7xrech;b"t\&qiAl 墀  c7kkz9w$,..u.͟X&Q3ЂހP<鎐`v%x@t 0adLl15e@@SC;}7G+lN؝;bv'lN؝;bv'lN؝;bv'lN؝;bv'lN؝;b] O X FKѸe`sJߦ풚 ǹ Ll]Aʶͺ&Idx!J灠o1c1c1c1c1: f ~Z83^svm۟mI$HI$I$I$I$e$I$I$II$I$I&_I$A$I e$IA$II H &_I   $I  e$I$I$II$I$I&_md[mI$A @$eI I$I?EK{y O#E5N mm H$I'i@I$I$I$I$A$I$I$II$I$I$H @ $H A$$I$A $@ II$I@$$A$I$I$II$I$I$I$I$I$~I $A?Emmo,x mmm*ړmmmpӹ%mmmf\@(}mm|L|7#?s8Jh`Le+QM:Xcu:Xcu:Xcu֪BXb-І3"O¤#Q!MGk|}v>;_Gk|}v>;_Gk|}v>;_F9_F~\h!lr`~?boj&k39"gd'a ^nYIg Qi7O,q= %eȫ2*nIML7z4 ;Adhݽǡ7r)JR)J_,t˛-Su'(\m7"D|#3\qa5>I}ƞ|KBb-\AU5EoedMSaeT ާI)?, < VIhuT"s#үhc16og[YEl1 mI$+ZCfm*NW% '"=6ɠn[EVXVtkh.ar92G:5X՛f&863 U;r;-R8uC8<1"m-DѾirtEʌÐy(ϖw-n ]a6Am:&['0NLلO$>(<5CVn "<ʜ pG#DXn?= P\LmrZr27בbOW Y>; XB!B!B!:ʠtҾDՠѷp˹/e Bmr&70LOxbmcQbpG8f\!SOxB1vg&xg&xg&xg&xg&xg&xc:t=D2A/ALnI$I$I$}{-t߱<=|9e0f]F{zd}i+U>7TvjbqI{텺@OTpJvD%X*ai#1.DZ"X}u!B' n_3gf0 b ' IK0vF  )jtnJ,[<f^JHp0`;I?ZA$9P2,FKw{7Y)l^KghEmY}ݪ6#(FJ'9F.tﵖV57 jtMe7 SdBbv _ Mvm*E^%wj¤BD~kX"4#tiӤLќSpc [b_%5 $_SN4т -5`ie/*vC3$L*Gq.ߍx9ƒNElNHoQ>B_ 56*pڍ݅VN~BILZ#Q~w>O}hc}1n+[OEβЛTV|B:6g2ǁNwMb[%Ɔ)#v $O.oZZ]ف4&i|Q_.y)j .>JIE!m;e\Cak󾪪!M}3+)ۧ9y1T(C# TPY~-1ҮgU̇  8j} Wu|$\cv63rsIRf= YH>hW_DǗI^oIjZ5MS%,]k+)JR)JR)JR)JR)J/g^%397ѱ Ok=/~ؗ"ND:x^[zbA*{AN 4,dPJD6V40$HA7spZk/BTx}[xlTHe xzfbK4!DHJr0Q-ؗ,TnSBMCmExhmɝFȩ~M4xaLDħfe S.{U؛YBgkBO'>d2G4跃fgiz8&'MbG 4X5FM O>֏`cD!B!B!B!B! ̒fTԻ;xG.iJR)JR)JR)JR)JR7`*!1AQa 0qё@P?f8݉`[ٟ{=o{=o{=o{=o r<>#0'`BF^\,(qK.Lɼq+#mhAL: .^T)jo*w5 H)MUꀻwODPTί8F Iq=n+w++$U(jsH hWm|L&dhɁ!% T0\䗇 (:u.! d/(=鯙@)@~^70(-ĺ7kN<)fymECN&$f, FURހ)vmQth ] ]xjItF/a1EF(.!)͂ e8fI)is[ܞH @hEh8-^w !QL$F*A*D˝EB @7i83c TFd#t# ^ԧgx&,ÁTf2 ]& "{Ego4'i,~5t8.44H $!<~E!v`.5!=;#i[=CPr&â˱~I2\%HB 2rk| rC?G[c79s#"/lӝbLa8Y| ^ud}}"dɓ&8T5HYx95fj[}gNo(-%DF| y_56^ -_BSs3^ٶ\ҝ`@ YF?A">,Cyv!njaUv]PkRE0n Nˡ @PG.Y0aB*pOͨ NǙ8F Iq=n+w++$U(j%`wLhPŏ}1jx||5.G":uK=ڽ$&{7Alk>k܋tM ,ozOF;t>!JxaUB4dmxْ`Wb {iɳ}??Ӝ!KGMd+g= P1[n{Nu'LE qqtxF */5hW=ŋh68cD(/gc>eѬV3\NU*o*F=~gߙ}~gߙ}~gߙ}~e;b'zEIjz.AQuc3=ضMp_' 61' (n.HkQŁhNd@S" 9+V*]5zlB)NfP&ϟ>|񴋣U5mx |?C.]e˜.\X)19Bl}᠅h Q. !؛AbO+EgzRLu@F7eǟ.<_:<qDZb+E](OҚwJފ-aWj*,uAyA#&3TLqAn yD4s]/P$AZ5@𪃢T iT [m|G,e2 D)]R[ Fadǧ0J1HR+V =0TEBRP iA7 *k{A0Y"=  9uH`фa@ojYߊB*((ia 3M\;趔!͈5B=WbX@u rA"hYqP(})$ $*[PzjU .@nI upАJ0@\2" \ Z:@E\ ZYK|ڦs;GԸ~ uEp:sԺ 5]*(5C ='rn Df8ApT@At-EƑJ 61H`Xߋ  j_c p rL\<48"&^'\BtC T#kn,IԕoU{ٴ]lA3O}}K?W$hK|m= J.; ʼnRnQUܫj^vZݪذ' w2Г:g.='7Fk\c@K®AY˃߇qf*ޘZa0fKwˁX9:C@khn5F  Xu5Ʋ `6bq cChH(AOq+Mǜ"l]s!P'eǜ75C:jF;.,cC6`T 2:E (.I؆=c8жKف>M6 hb -`𘯟tT ћ߹772&6֢G4 T+lf\`҉'նK7aOd.ׯ^25#5q MxۮirGQ\T!lތWAwt%TCn!)`׉ "3M$7@"Z[TkfjnG E5O"dmd]lGyG9(*J;m -#X @\SMh~qz׌$ح:.>gI|yPc4Gz$3Q8Zl3$nUAik Ө-Тx?6H):wEE]nR"  Fk9 }G.GEd2z=L9=LOS'dd2z=LOS'rz:g^ٸXjw{uL6c*^+Vbrn 1K; 5Ku\x>Dp'c>G >3N70Aמ%ap3~y?<z=G瞣Q~y?<z=G瞣Q~y?<z=G瞣Q~y?'^8cHZ GÀ$v$"9\˜)uXB2d׫Zn+(Bq拞c0[.ƚq=c r˗.\r˗.\r˗.\r06(뀏1dEuZ&v'Ua;57$`ta+Bg$6 n#Œ  vj5#%wQbi{kCq'EG):6lٳf͛6lٳf͛6lٳfn\Q 4uZHh0M7;ްjHj 4O!AA"@N)XEPY%ڐ]e!x?ΞrpԕaLU4%{VBrsB0UF"bdE! C3Y6Z"i1Gv?,Xbŋ,Xbŋ,Xbŋ-{m[N y=PEPE:X>0\Rʡ9a:m7/\~jރXkwyϮsbuw#~́vuMYw|rI8212` ?j˕!nP4h,A !lB:\7@!SXjhuG@nk߮xKmˋС\`O A]D$ҍ;%b 4,fI1J V Wo4=X'4nD6/Zyd@2()[11@S.|JJ(l9yL69W9x.zuͬӾ~?O+1z؈Kc?vnO,߻ ޖݮ75 [mwx)+M1ܾB<;knoaCg@/@&7עQPlr,ڇ3GC э2ٻ՟7o5]cT v*Azܭ™~M74uJC\,vv>3Z݊B2䯂(.\~dzQQ1#igRh5"E$"Gib-Xٲs[QAsIrfŘ#EDǃf۷aƵs'f$A4"8Yl7wd-׀ ȉ[z-a"\JКA >2iBTُb[$ GXpPVu)i{P* i8#b*@&#j$Y \ajan'% EZL:*{x'4Ӊm/Bڴ#2y5tX#T IՒ ބ&'ì>?ņ :UB(&'S5ڡPPPQXĝ_AT:^]q8vmnނ\ ׸t:j$JC,-'Q AR EP{tf.vnjcRA '|ٷtDT7, j`u 06x:Ѡ $܋FT<<Lہ0= qRt>wg0C=b$^+.a6:7wkBm/Mso7R,"]UB \t ++]Hlm1;ǫtmИā?,ѩ B4|,0FٴˠX^‘3&cpjiHG8ʇbKBt61[z#5O[ԍ "6:p6A4t񋀞R0\(v*R71:x~qrbμ o_YSһ sOq2[G'DBV]ɏddpofHo)ɝƑӈ :a0hzH`&ғE\?E@. !/|\* W" c.ZL *LvzMjaaB7]N_ F܋(=\MBWf}#qh.2[@T1Icj$1t4E]f 7v CR,2GC]#F1UTn&3"l;]ЈK z0╈CYR0) &f!HXKk.5 3?s0鏹~Z1 ]7(4y5A=[;}.{G`B9)]lv,fkF1,#vOؠ`fy\brZpY\h#GVq1B"KsYXv8(ԫ2" Vp€ mI ET'=0~ [}G{w(2~k ۸1NGR 9_@T]s@3mHΤ_\q-U@<SƳ_i a\ّ`TF;\v; ›׍_3q"o*~_~p5&rO< 3N؏_,Gx\cپ3("aE;h1%=gCfXmz=c垱Zf9Ns~,z=c垱Zg|־Y,z=c垱Xg|>Y,z=ccѓ$Y0hG:߃ĴADɐ}ԜlIpRS* zpFvq~9C$ޱӽg?%f΢z2ǠbzN[sٜځJ p+-'W9&"^Gx߉/h_^6_ξHx.@t0p晳Ty{(zbO:JLWxDD,ӀD!hod4v42Ys^qtuC)A_c^MQ/ɱ}ݤqQՎZ^[-D9-NzEGt[E\aeM+ Riuy+>GJzr>`xT%qpFBaJdJ!\ҫ>W=:(Ux. Шy\S#1aەLd~8 ܍ᤦwc3jEk(PÌ mΩBjC?ptm:KBLyFX `)Rq]@Q 4;u6ƶ'@b_/0J`N$xb>%:8m?}umˈ(ld q܀]v:pj\S g,Hw zM%Gy'ٶ"@8늮=TEnn6Pv0"ZOџj+AcZSNGK\ g6q UJt4aRa)vŅ"l]!`ƖxPh< aD8+w_ Uz:c=dgKmgY/=,wr{k=mg?yh?yK=羙?mgY{c'{k=mgD9r.?xtBr6poT1`o4wLK?[gY,z=o垷[gY,z=o垷[gY,z=o垷[gY,z=o垷[gq#r|_0' w,:'ց |q$1Hpw#!TÂT)NV4 @0 a^Sr*+'UG$;dt=_=q~_=q~_=q~_=q~_=q~_=q~_=q~_=q~_=q~_Y2("+Wlyricue-4.0.12/help/C/figures/docs-main-bgs.jpg0000664000000000000000000006371613053456656016077 0ustar JFIFHH4ExifMM*,JFIFC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?aӶE8"-l?>V- C&U~t 9:GZ%(٘?9?{v"|#e݀.dmw+slPa c{N7GE:ڼ G5m.k\]^UO6A:"{w=<Ջ[jwB"h.Kں=HݿpNOZ>vtH| v7ѱnpNOWJK`T=pzqҀKfG#UQy`y'㊱Oo.B"_j!qaDEyY*:3wz@dànN10zg8}f ,ȉ*s pAOB*bkm$\ c8oZgCIM]$~5nOk=hxpzn+̞`KV G7ך +<7R\A̭Eò;s`"o iFaq,_81]:`rǥ$>-2lH# pNTzʀÉrm5?&+9Fx1Pą\֛"iZI>yFr2a(NE!Z ͑^BFw`J.G$-խ4ʑ^706N:zP521AEI:~5mԤNOZKs)$r;Fǭd _GI! mdm G^B/*vg٘ܲ17ԏ3*(.nn9:ri5h|TsI-ܗEYU?{VȺ~TxZE=n!ƞ-"_TEԾ򧋙}G@>>.d/dLmUvSj/M?̞L//DLhzpuoOƓ2ʃu/EX=7Cs/_QPc!Ҭ/oԾ򦛩}G@:m HL4鲩3gq*H#AFRl bqb[$ €)(7Sь83EOM+(CLnxW'*[qҮPo~ӬeDd)ЍbEPZ߳4DG߶bEQ 1K~"(jC^/>?Vƾ] R߈'S_GN?vƾdɵh*+".A#?_\V?VƏO~|qOƩs*(ɏڏ=/\%j}b'Z[ߦ?u?M5-oz_G-oz_OQ4~AFdk~hԿ񯜿kxߘ?kxߘ?oGXaGizgkbFO]VcHbY;&?VWo~CE 9gk:ky Acz,=rq]szmWvLrGVB(r{E[ Q ΊtxM_15|O@Q@Q@ YtЅ}ھ?-g]Bj>*>* <Т*QE}.'*Ui\AjL( ŏF[]rȕ}^&xd.$TE2H S??^ 3kd}C™BT?]qgB_$|:h1L<Gu|OusFuw 7tUT&zETV,uO[U>om-͜A@ Ѩ L`;h -AuY ƙ:Р I6RӅhSƻ(_7ηZVo00ŸPsbqJ.<<ҥc㯧n(((|@ke$f+pģ\usn{㛄iJe?/<< /3nl*Z(((y֭##^:3@4t?4T:QB([f'7֫:orHZI}W?Et'7֣Df@ 8jۮ/47X7?ԟ'7W'm|Sqi_?;M;OO|?Z)l?BX1#?ZO|g~? (̉ܠQ[Ǥ?/kb]aES(;Wj0!z=y֮6d? Qc(ҿhN1?V?@ֹZ((|_S]kj+= xi??kinȥ0*I (mʥTD~~QTPWk_2zyޱƈH4U1q4##8n?:~Uo&0\Xes1GsxX5VIb*PÌ,qQߕb\|BI8D3Mwk[9㛏 [m2Kʪ 6؞B#;C:rLhlGoʨ[b*W'\)r 2N\RhN-m$xd `q~@202ڙ}:Mw/y27Mw)4.pO"'G~~E~Nɗyheo|KV7GVt \^'_ιiGL2I蒲YX<tyDdO6Oߝ1W?'+b%]i7hXpG8yGBP9vbB(  Q@ oZz֣J/]?J̽uY--G߀1'<ֵVF\ٴ3@#O2HgG 3{ )cYP# ÐA) 9@5x:=eNJC6!L X.V=׍r"I@\`s@:E-֝ QF6qU$n3U׉Xڹ?%my-ٸxfbE8*33ǽuDP6)E7hZp]՗RN4PϨYX2 /3'ެ⳵ NkcQ< $ T^@,3uP1JC sW0 6Ӏ F9cI6C9*|wrc\G^eh*sv#>$+}I!_+dYw ݼbH$GuDP %84 -@ĜSG'Q@go5;%eP2:#gn{Kjp#j kk6}A xO/B_uOIoOĔ?W_K?+ (ٿ~RzoEMBitƲ#>ltg{E{ XZ >ƧfPvwi3N]Hc\HЎyO?'us_ jPriqyRN<׃_R{Dh?| )_ B_=Ъ1+k bo$}1|^:xmhNd?aӬƢ-@sI3' p?4f+O2fn܀9k#xuR&{ϚN?V7-NGƽ{ھͽ}6%U2H Ww@?N5G)&r̺nGM\7)&>xG\𵖩bmy#hǘ'ր= ΡiT.rH z; GO?YzJ0r_p5?,?fn}$2=I*@ھg=?]pWu wɨ?N5@-{_e$soW {ɨ~׼-5ln >WmߟN>GiGV*%H,6ϓB4Sd&ŘYPXh K ;K: .-`yt OO>QE'F@_I>QE4:o!tߕ (ӿk~W(ӿk~W(+N}_ӁȰrZ(ikq52o@q?zwТO;RfiB(Mk~4ТO?|-Ц;O _(;O _)? o(-#\*=(C  !"$"$CG h  !1AQU"245STVaqs#37RWrtv$%BFbu6DcdCEG&'f3 Qq123!SRb#AaB ?KM"&xq$8' oCH]6Jo4?[~?A=)]J'r? Ƹ&ٮVI r=lcshw^j3vӶ}7Ek{is|vP5vAvu:k@dC=Fڽ;9IxِNђ@R@AY:;AG}.;ŐHغ8棇+>Vg_Q$lk޷[..i餩8_$`4 ` 8kiil ҹ1-sO# 9Ud}Kk9=FSD$d,|ns8A 9r##H {//n>GRqzO>Kh'ˏ)mUDflm.`B=ƵğcPJحvh .qg;뇰񔿶ts?R ^Kh 髐!қk+D9.qoc<c nDdiMh iG %/OKW/be7GK7<)Kh,ܽ8Dg)m/s,ŦtOoAK\K>mRЗ,N-9!>})rt:ۯwj̶ m<7ycDv?G V56ѵUwHbtJ(s 2`z Gdhv5r\$΃vDt7' zk䅲gF1yn0PixR^t|}uUc"ѰMddc Z5VhҳNKgKH&Pjgg&]ʾ 1=ppE:{g[,:m;gj{u3O.!69q#A/'~j zi]E˺Yh61.9k\8q8 n,Ae{5E38Dw450܏4v֕ 4-U4LMѴ&PpOSl{Mʝom[-5OP1[tohL2xη-?D劫Dt_t_gH$:H 77zvV{%,*}a*%fen))%T`9;8#(6Sl6kCWISWR6+u(yB ג}]SA-oZzԳFgo;0Lw8qr EQKe5= uel !,qH~!vVͫlW-[p:K"GOZ!OO$lA:rnnTPU4l{yc@8_*#9o6t[4 QtNZ%ͽXpAoR~hAIf])+UU|w!ӽ60CWU9H{9o %ks-EYr[[1$g8Ý`߶%Sf)㊂S8|HءqytN\l Ȋ-m~\Za| 9v钡899ČG6Z5D;'pATZu2(d6NgRҌc<37ƃ{.QҚ.*:A_aw5  ZӜ~q~˪um=K4z jH/NG5sc kUlapi]%' ^8۹8;q/zJ۶itI/T7 +CY<2H[e h hIٲ֖ETiJ3Ym\0>OS$)̍1$8kpI .m6۵VN[(|1[+_q@Al&I.<jfM3"Srɐƽc'g֚NZҶ;nMS˚DI%iv%);[+eeH>jZfOOL%ax';a'bK?%mg))˝2O]/h?TԹ̃AҦ]3frC3Fe4_AWګ]T-ڳePOu'POڻu'O+#^[GdVYEdNWCd>UCd +~tNчόys|#ݽP:G{*?twT;A$]POHoe_(#}P[Aܢjf3}ݥ8.?y+ieIoeCMHya"܄Ԭ w7}sdtwS0{)A'~o? 7:Q{)=? n7GJ7oe'ҍ7JWod,ˢCQ%tx9 /8zRC^9ki}#y!B_''(tx%Z~47P^6ΘfwMSy0MN3N@f2Ӗm?o++q{`4;p UYkvk-XlvG!` %Z!i#AAw Jv_IGEČ9B3H!APT$(*T$AX (|oooorom|oo i%)/=t L&Om&DPAccwy5)Q&qN} ǧO(*Z;d"pf(7@9T|+ҳ}Hז:`}2 mQ.T &2VȌGʉ#tm ?%:mTݦ`k,,y&9/D să(:KݧPuE OoTO qA: VQ]例 [gtG\ ִG7.L7vT.L'vT.Qh+I Ş Ş Ş h'h'nt{=Mݴgz=G@zhSwmt{}Mݴ$Yny"Swmy"Sz,7vG,7vAԝAAnYnrAA3)7(7ܙNܙnc7F-ǔV5_GS 't.g=^(+oA8=b  cm*+ tT  AJ Ý%'AlcF.$ Ao8J >UW5޿QAH@ 4: $Jw̱=壴1tfr4R:ۥ+o|: o|: ^/A#TPv6ڥ+~/ jT0-v|aoǥ/ jb_AWN{T05/ m݌|a wc/=_A#Y[y~k zs2&Nv^?59[{x+oco``݋k ӕ/&jane_L 5헞/&:j[o?m_P'V[xAv]5Tv6ڥQCۿjA=k#Z.{TZ.]5(銏\CHۯnàQxd$[Lf7AQ@a( <1$"6y| "{8sL6Y uڊߥ;yw1{p S{~e۽Yؖ?Ҟȱ[z{<Ԛi4stAT Kڏ`4wrTGj=S]Gw%O ytv ܕ>0ڏ`4wrTGj=S]Gw%O ytv ܕ>0ڏ`4wrTGj=S]Gw%O vo[mRmM.v ekZLoA㆓ chCGb4rxe,M]-^1>2ocm'[j<2ϺWdym؍-ܵ;y~VGi=QᓺWdym؍-ܵ;y~VGi=QᓺWdym؍-ܵ;y~VGi=QᓺWdym؍-ܵ;y~VGi=QᓺWdym؍-ܵ;y~VGiQJ(_cNZ\-;_M*ȃmsJțkxsnL8q[=4jK, \j9w:}? :\$ar9)8b [$—_?nY=w7p>P Пƃw>OĻph=zv '1q㺶Х@ }q tR !.sz!#3p=FD0G{~ hV[378p= gtlwH a^ Ioh> {iK#h@k}_X.;l T *='%muw5f/yPsoO$'e-ݺ]k!nY=w7p>P Пƃw>OĻph=zv '1q㺶Х@ Sy~9; w5f/yPsoO$/l 0TtͤAeϯf$4WC4}v%ۃFӴW @@@@@@@@@Tx5>ɍ ն^*CAK dj ǝ҃߫$.+ݟPem'6>}^AӶؗn GN\Syפ&637\wVzTzO?"J ZZ7B Ɍs(9J2}ۿAO|D(Pv[ hOKcAy?;SN'b]4i=;ErM^8qq[eR[809*Nm?p3u{"I<|fD#r?*em'6>}^AӶؗn GN\Syפ&637\wVz=7Aylf?B E^?Hi7p| f dƃ#nYMv?9p>P S1s!qv?ؗn GN @0 a@¦ILm}`go)P-Vs۾D4PZro(3 Y }$~AR2KpsyFlPvmߥƃvZ]IvGItw$k%Ťq Fz)~˻={<.o@컳Ǻ]_ktckl+fUu x+^z8RZj'Q29[Fy )~{={b\~-[Ty+5+_[L Ϻă3]kt)~˻={<.oAҟBNtީ*+֫[ d,;d8A :cG*69{}G?+LS?/(lﳚi ˼W}'R*69{y\O(lﳚi wRZ#S3^PnN.h~#ZីN_QkmP>QS:qON%o+)<]uwR>TmsTM?N_QGg5I*i wR*6'5N:OSW}'dyQwS4;~NFGg}=OSW}'dyQwS4c_?+L<?)deg_P,z{wȃ6Q5-5 %-pdKv8l08 $|WKAǦW~i;0i[毴[.TrURt|TǙp(7Z:jmlwkSiiiy]n c'O2S>uXTcIR[h,#+I !sZN$xmYC:ݬD Dý ljG VWQj\@͊3 A )s1_tn onFR6ODɧD؄$xs8㋊ .|g4]n?Pi~w}(AǠvrw7c~jzwPx}F:GJ =.ni ?X}s_h;4.>ӾBǶJQ~BOk  xֹkW?&#A5O O%myR̞ZD6MZsTvv̏X:jӝӵ.|q#f>=Km\|9٪o};RW2=`NvjNԺ}v̏X:jӝӵ.|q#f>=Km\|9٪o};RW2=`NvjNԺ}v̏X:jӝӵ.|q#tf>=1ʗYcS8Ezr8=yPx= M E.n4 )E;}z&$h:[礕Æ:NAh3loT',d+ Mak:?0Z Ү.`ȫ*WK^btft'IVgK^btft'IVgK^btft'IVgK^btft'IVgK^btftqVXUSm}->?>-g܍,و1~TBv>N?Pjm~wks{ª$h:[{I% ̱uCz f-7%]Z?0mTk.^լtNt Γ9`':LI0&sNt%YcT l#ӰIr܇PnS:>Zk_] _@Tbto4%j、fX:?=Q3}ErVrVUvߋV* %:-:?Qg܅!V[f@@@@@@Aj~uwȃȶZ/n!A Թ$rX|(;z&$h:;{I% ̱uCz f-7%]Z?0mīYrdUAڛuM;@0`3΃jR|rjOF}ɐOKWU9\ c?vթ3P:]#"jBTN:^j?kZ ri>< t]괜Nvܜ jST-!dR dH;_&iojg1\?X0ƸƙxճGykOŦ_*jlA^O5MGyau5}_s:Bj;u4}} gt}z6:3+Ϯm;u3hgu}z_s:C#G^OwxͳG^;txͳ}z-6 u3gH][;;?jŝ 5X엱L5_u11 DaLB|#ɺ_/AM}~ n</0i?/AfOQE< h70fxp2D’UUQ#2v52L#΃=hxK "aF{wr@/y0IA]`&sK[-g}19? `koƜh팸ofX]ǰ1UAUvwbԵSqf@7I $uJ u^tv#VꞃOv8mĞvsPsWm`wrۦ.VmXg&G&i7>xg!YWDjKVژ#Ek[ %żwGiiDjA!4pVE ,tOm^`2z]aڊKőH) 3-3d!3n"NkNOT '[)*)RE54d|űrAs렍G};)b. ԢjHi,԰y&kA2{E,5\&So7\sß z54Zr׋K'/@ T^%4\/$0<Cs罠xG cvR}A`?1g  0m8=tAOPA`<(##񠤳9=R7'֌hAzK(6Ii7ռ6T' 9icAalD]5K!eڶ껕2yW`! ^]}Qֶ͡٭0@ti$/L 1`qzhu5On+ZխB69%sAf]4G6t6˽P]\mlQt[11)kX0$Pm6[f+lrTCM=[jټ:2n8=Ѽ;w;(35uoz*;}M tvSo~wYt{xhHcp\H Ŵcnٖ} k"٫-L>)KiݺOq܏iTEE|Ot)f, |ys!PiZ3hS)lJS&mCݾ"&78:;dWj*%P n6wZ*3|i1'΃S}ٖ^sTtYwPƆk+,<%I>T"i5?AZK^5|wN?Hں%cc|v'qef4mhkkL 0qˉߛ9xgs:gM_?UiTj7fѱƴyh!7O: hiSth5EC R,qHÁn5ew:XOyZ]-al0;0w\u8eEGh%WVͨY4[<%{8nvzدNiqt,sC_OLKp%AA)@!<T [S,8d( H)@@A9 v痮џ: .?^o00~4 G>W 75 #;98:zXY' sH X-vz*h2cߺ-&>iY>= aa$ #! A  RDyyÈ[1Oiwg:(#)( ?Zo4_;7 0 A/\VX;Q̴ 28bgٞ>daKk9Զ{ө(outY([R8=V\֗`pjZMQ4wAdSY%ޑ1<یsp2APM~Mt3MDTupH#ct`uҴi<4RSS>h(+c{p'״5PnϾ]CFSk{#h2|#h2Q/])4a]Eoo}tu)5Ѵ^Ǿ>?[Cє;-=G!TDaT{ƑES4<PA8q%-#00TEI>0 tU.q|0YJ ~AI<00ULb϶UM~Ao\E MM7R/k͌? SO`s:"WA=O|0gh@$4y<1Lz54Qu].*iP3J49feOiw]Ncv^t?/eѺwL]uvIlvCnD.x@9A@˯J/ O yi6DZ-(|*ak˯J/ G yi6DZM}.(2 /DlKQjkU@WWsf0! e$p87=ٻ. gNicvnDZ7pEAGKc囸" ]5$uxoJȞ=A0F.x,w'=5'EAqLؘzhi1ӖoC젖0vnP\n'9femz`&Z3N鋮֩)-SVNmЙȘ^CAa gAQl %A>Z-}(|*akJ G yhDZ-}(|*l#wtCP<[]"PT /DlOQj{U@WEUsfI^$$7.  i,?6O 'e'Ncv^PPt7eyt֗7Ft xJȤo OӆS etߥw;u%o̠g8MwU^֔ڏfuͤAa?.!h>9-9- %8}$=%>{9ƹƔuAaO.!h>8R\vNmWmHӠC]lwm9+gcZz rاחD~|4P\ۜ[.AAz'Jk*)v.1. rWmNƵAaO.!h> ːA!+"jvR9r5P' /+l}AyE>rh3l?^?7vňc$ A@8b,yӦ o/-x f{[q8<Oل4Xل_ ,@'j }=tcτ<_fZ|AmT9 k*~v5_WU`Ao:P]i3s/T^~;z A NP[w[vPsC>x>I|4+}Z(.4Auola|@@@@@@@A{뷣~pH] N'ۿ oAmĠ+OOΜWUÂ\o: AmEkn5Pu{h1G tނPPsA>#A7u\ AGkn5u{1' aPZʯxު] AuzAU<~pI nAiǛv;4#GX]j Amwރcz;z A .AC1AiqAFjtP]*n{T==%LOei ll=ѽ5>0xTjN TW䶥z UYWR5?AM\VQG[u M4񘦊Z:w2F4χ9A W<"H +z V/A=$h_FґW<" zHiXtFKE^):AAWGmd5[!4IXhXC.ZA1LJ:UcԽAmu~'sSd:ƣz QYcQ|E?Am]":m/y2@8ǺDtEGp ȃ9Q+ݻ S^Θ >Pxd&5Sd ڠ8Gp3;ʦQGYo4b)i)F \>i84^χ _D^ϾWϴ?@7gih:Nb vyo ݞ":7gMA_DmEY e:"+s\%Hcr8'ziLHJ|@ GH  MeA(aw.jll2(~dcЇ*G4 f8رm(QU.%gxX#/@04\Q!iDm`68LJK6oL+ fX2!vs~x9|%gfcc888hmYyr"$Hw )sȢ-fe˻nCdHIqİbO=IU =HH%~Iӫey~jO[mf$X̃{t\O tp~ +i{R7tYǓ&be͒JMb2e\)gMrʅ `Y~a܏U@e2ofnsFn lIvgvqɠ ^Ht waAiҤtnrF22z<ϖ ,HϦ]O_ YE!]ySN>o0` plQi ))b_ ?ʣKc o|8 pRK?ʍ+P9]%:;wHG7l"6~lO*<ٲţySe了o/̋"HJaFzs]4yLK:S'mG(vP T!3Xv}T%oAg+(p2xC '_Ə5h-V{H|+ K}+gp=p&mor_KKly41~leG4ˣܛ[דE>6${.N8NFT[&tQ̡<|F/@wO~gɏy1vy{ϓߥYcLݪ|(@|Gj'JO~gɏy1vy{ϓߥH|.\p[wY d=JE. O;A?EH%v[uvȬy?7*ely:Dˑ*g~KI?~b$ww~}?O֩i'OQ?1Ex?Z>Z?1GTh<~ROꟘI?~bw~}?KI?~b$.߳x?Z?1GTh<~ROꟘI?~bw~}?O֩i'OQ?1Ex?Z>Tz(OꟘ]<~gW @pb\ Q4QC\2*OG5uGqg",ԁ95d.ėhEnz{T )(ӿi\SAR.{"ܼsacܟ{@ I+6[wHTb:T֘<v[Xm_'x!F@Z]ykV ci{=3b6\(YTbݺ?SOh]ڌz]TKwR__ȎymqQhqv<v6oԠ ycRum[8 Ap'=y/vGt*շo.^ٲ-ݻH̠*J ?0S]^[WT^w!9h_*~<v⪋]糦l3@:tɥ7vEMZPC$wlA/7Yu;y@oƷ( Ѳ~-uf@V}?w6MD6y$Xc?%8_*~U^T{ ݥB#8>W?%Ӣ -De*]'$qL=4Ig $RpN}=jOG=+l9W?k+ . ELl =\Vϕ&9^Zӿi\SAQ2( $gaQyz;ujmmժ(ͷGͷV ^?6]^?6]Z*z;tyz;ujmmժ(ͷGͷV ^?6]^?6]Z*z;t۳uj`OS҇K{3ty:fꆭy5~s>}gG^jktC BrFr1Bdhk`:d۷K?oXSf8#O=_cVu[oBڤ\V ~nUoԿ罿7H`H# ]f{ [{grDŽ18!S}pͦE'tqӀ3bHb "*:Q ))f((((((((92qdȊ($σDUP4pOH`gar8'hk$?Ez:Y"O*("ƃ `(C  !"$"$CVb  !S1"ATUW257Qsu#34atBRq$Cbv%&6Dc8Vr'f!1!A" ? 94 JnFRݙk$<&'[Y-@, G~ #b}h1>ߴyodxLO<&'[Y-@, G~ #b}h1>ߴyodxLO<&'[Y-@}^RF~Y!q%d̗2!q%d̗2^H\w{!q%d̗2^H\w{!q%d̗2^H\w{!q%d̗2^H\w{!q%d̗2^H\w{"=j@Tdi I&_}435ؒF|bHY-AK#b}h1>ߴyodxLO<&'[Y-@, G~W"&7 U ku[yIJ"ͼւ3f/k#b}h1>ߴyodxLO<&'[Y-@, G~ #b}h1>ߴyodxLO<&'[Y-@, G~XCb#8M>l͵RJǕi;} #dxLO<&'[Y-@, G~ #b}h1>ߴyodxLO<&'[ LiٙCRc>]eKCQ]*Jq8 5# Uiħȝ3u)quIՔb*NuFɭNU.%6ֵM{9&^Ӝ}gGtE{\P>O:,Gu+:fmV>ErOy\ K.."?=&i8MmN{!ȍUVF1cgKdIKZJR5)F|Df_Tn4iy&8L9-42f};.?3\6E&/iSHվݳ"[}(VQՠ7P΋>Ȍ\mv3#fGc#/#4)~z?Z*:m*:d* irKm&I!mէiE>5zSlͪܨWI+V'FPmT9/jԌThWr#+)&[˼LZ#UHi 0̌y[dy̍lW;8 MB%ZOw]c̦$eȌ ZFIB:,m[Y"Km\ȊQȿ~I+KٹFstR|H{|Jhs+qF8(LUy%EHj|"O_g~V욍>42f};.?3\#hBOl:,MǏu(ֺm7>GcKyFIWiT9UagVKs"l#޸ @>r|gFԯTmX=pbJ('6Z* VDee$ywIӭ|7w? `AQlPcuX']ua5#H9wMSp؎4]֊81, J3SJH!g ujޕ0uښEC3Yʹ2|rNֽ sb'MqZcH*3.(VI~Q#£ mII(dvG߸*LJI֣ NSqrTD8d,w#%mDYX_H|/gk_.O}GeP-KȎCi%+ Z6v94:?)^+N6jc3+\MC)էhP0h^};$+X}8۩\bI+TiCmj!)ZUes\t",Sمs_~le-ϫ~3_V(xP4]6V^%L[)hY}"X '8>%Yhx3ݡK"ILi\7/UԘsI#tדf^gr52J"^yp,MM^mehΓZO}kf1C13S5NîK6]Y0X{AozUrUޥTߌJ*iHZRLyD}.pU(#ͼOa 'HLr;-IZc)Dy#ΣϘȊ;)ԿIܡ/; v=r:.%˻5m W5+~QrTKHTV|3J#2ZE)XGEN nUITZ:b82e]Y%q1kD:@,[{%l3v{?Ȳey~X+}Ka'x݇%3$xY̿BV$0fh\P-jU^"vc#/aWiE̋.n‰48S+ܤ=S]m-Qr"f̏ \%kEJj55Йu̴I ' :̮8Y%.G{]1qn'j΍[Uą *{xrDb!ht$6gX/kAĘ b %CKNrdyTL2v4(e߸vMJ"B_6!谚m!jC4d|UV ncq8,jK"L ۆTuNdR%)Gs20NvpɋSrE\Q4dւ23#"Uf[ÙXښfGH.Uw*@bS&c; 2%J# Sn;dfdjl| IxZw"JmkuHRRRMGDF\54s;˜T٦8\F,]r}fdi,ʲ;90`I$i**i(đ=E29uFeiE7w˜*:+N?uS;Lu ͸BVFw25oW6Qg\:6exJ4%|I=tnobzT\a`W΢4{ G 87P')yXmUtZ__LuMBVLw2VFW23;n.UX4(s5p*ܣ3B,ɲϹ2~+_dNƒUjNTZv2$&d&.#hZ#:>2UG흵5%RKQ9.;TDDEx^ƕMj5zD 4f㴺2'9\ɗR 6+Hw=Gca,:eMfǥSTgVcKRJBVYokUc.b 5&#b'WM"UH;~*eI,$*y2OS0uJ?E<Sv,E8G齖'=֨M*; ǫ9ٸYRvB26KI5D U>NQ5c9)i)^T>d{es,{XیUY}QkeNxɶ)nC6'I9GB3ը2 i3#CL"LG>jx)OLb1Q%"m$܋6(LY8f!U =. eu֒F74H4X*^>'EjHDM-*TtfNr3Mf-v1U΂UGێ5!pA%&iDW+oF,_J7:UkQq~Bޓ6SOҔjSee$}b"ߺ%qigD*]n|((8li'+ΒqeD%f"",ObjQ1؆eF JU:Rr "%dl|dDU W*xFz(S&\YJ*ˬ']l"ZUe̋gtuuvrêr(.K,k$j%sCi$3&E{mOƦcgeO6)MeFu(Ӹns1g>S&v4ERu¢ӱ}\ 4K%!7Iw6D^غ4uN:bMQQ3ip"$n; .3t^nr49$U՜Y79> zkiIA]IN- nh0o.[TX7Vp;%9*,{D)VHz:c4J41a%X[rl^khiVsVI JRW=pNhոWZ];>r$7 ھoqS% z̬ӫΣOE8lМߢRV$Vn#.sEqx&]U4EU *'n᭵BݤbQ=ElY,"e iPڒM^!yE[ ՠش,A>JT1Q6U֛)}fL̈앑\ GDzn[f-&lf8fћf*5f;E 2U:Q,ؔw" ʤN-v>r@Db ob -@Z tCiq#";)g{oYp%5Jr"DZZ\Bf["Q} 4\8TZ%&:"aSA:XȈ{ũ1f34,Eb""" "L=@ScgԳ[s-KWt5ԥX;kF~~>w_snW7fl'vӭ_fL^+^'4 [qթԚR3YG4)Z8ʥFKⓔֶ z$>r#Sx>T.4WM@)":ᴥ씕g'{^¢^S+ԗ5L͂:˥t%i +2M}6{VO8FWt{ku)U DGtI/%.v8RS䶛uQ6umi$$&F"۬lңՕֿ{[ZR5J+n;^0gOB8MΫQӖy̯`x~Qi,LJS쩌ļD2Q""[@!hn(ΩΧQ]lѫ%8yRFw]Q?LÔjf!WCT:P{Zk(47ܙSdrE~t}J" osY(dDnBϝN6ӉB;Ƅ6#G0Ⲇc) B1""S1MTnZ<ۍ,.Q@V#C5 RTaGNھ1!-! #;dj2pfTޒdH~F5͊l7]J)*H=O(1ΈIXN#9mzĩ+#>y^fFF kDm;rjDڐR+uڲ]ىGfZu7*TVv9%.#XKiJD䋹l_0V hԪ8 xrCnT&Ҙh^uMY|2 >rWBi6bJT1Q6U֛)}fL̈앑\gj?ڛR6/y~𨔬Sd0j5*-YLʀҗ[f Uji,ynS+ yǐk[Rɔ߽($;ص?5ҹG/W:V[־lۯ{[J6jX^-f c=Jd35j,ʶe({d{GԂA(St(i PIȲR #Fdh}KP߭@\ƬD͛Zf Mm*SkV6p> Lrtqfk&Lf=, V"5fY*Wf獄hڲ44o3=ٌtN~TOVhWRfͥ*SQУBi38} NnCT쬵F&מjQخFFGs3;7ZIŕKK\ٶ8h6hFB"#+﹞ktm9Y8rtsETqF&UhծM onf[np+~55О"e"UcMjAZM&"k:+ϊjƒ[NT&ZvsV6|HKj<^C/p| ֢x 7pli59]s4 gyJuBr+XIbNRO65`(sjtuZj.Re‡)ͦM,Ԕ4jlPplZ TUqrtq*Mq&fDvJȮE2,FqTG"B33$潈{1~ qn*0c5)"ZY&fGdvwStZihǥͤKEV5ZaiΌfnƢVS֕3UVhx6%:dT:GҖ%/ĕ(-Do 0wZbB OK3*ε>.*$@;lQ6ĸp{!r{(ِyĆ}f[_y!1/໅46^Rr;JRN_NQwz|GKzIsPS@6Pڕu-%K3ʤnkVæUinZLQT诡D5is>G%-$zw*ױJsvP(긓OةpTJAe+\1ol LmM,hJj jNCqӎHKnmҽkYWyҾ4GjħCjU!ZRde iѴSqFyre-ȭť&/n t aٵJe.[0)DM:RLi{^HzDN Syme:&n9J-Ē$ﺋy|a礸X RW^³BSsYh^_df,W Cz4U~ Q}d 6w̮fYrg=7*xURD4!܉,%K;S>Hq6ӊba#:hfH)՘`6bu`bpi%cc!Tu 2e)-kZv ցu/<--*& l'6١36,lCZhHFV5]VP[%g<{'6I6k&Mk {(tKfɼW7tJ!i5}a>N83e2?u~픾?>Ф=0.tYt4JL]yD'{{Ŀ[Lo1R(q(lE2_\rVz͋VV{Aq1ѱlsRETiq^1'Z8IZ(DkF?A?Mq$]ZTސ5M[i(J KW"#2p2'cOFm ʋ_y12`/颓 x{UIg˙˗:m]snNZ$ Tc\/UV:يQ܌dJ܅̷FIL]IIzEAj)6ӤIRԤJĥkT)Tg&{JMTU5ҐmGBi' KQwjwVIf0 HZ~DcI;.1F)jKdDEvSp_AiJXV*3FDtӕĥl"(3ȝkWtC<7;NKF5+Zȋ![=F#.`>̪FHLX!7͙%Ȼ$~)=੸oT6{fme˝wǎ03x\uAQ) T&#`GdKlZ^}> b Z:}NAo%SwJmfe{pzUҫzIfqMLsq*I\E$FWԊ=!kXU~^CuOJ8Fl{otGÑ4\c A2F)1%q!2LebGm[mZF(ZDAa"4tG!Žfk5 >қddi# xL*̺vDBZ[o,\γ;Gs@3b'*ɢװ=%SOm>H4ɥ҅uWxc_so i&t̍$;u2Vvz)Yj7,8Aږؠ3rg-Uor@p'0iS1mOS^PveI+-jJIrv#s~;)CE'ʕ/zUMзͼ?jrZssʠ45A~t "3FuP:4q igUI[wSmQ*T~'Amqt`\~'Ai{: \~'Amqt`\~'Amqt`\~'Amqͪ7Rc3vN: k0 ?6N: k0 ?6NIGd_0 7ݮ?6N: k0 ?6N: k0 ?6N: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6N\VV?hDR0U"WX-99LE@hk{EEgG}k` GSF .ɣ)|D ac/E ʚi +% IHRDDDEe#CJ=i5VdNDg"B2n-)'Y'1ٙRb_0z<`=_ZAJRG=VȊ[5_9b, 1 ˠ]=%0 ѣhwMX:ojMҜ7Ke1PcLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?a6%2u)>T}L?$slnmU._~P`Al@ZX#=c߲hߊp_:'pjYR'(Iw3Zd"+DE$iFp֘hi*jom5~?ZHhR0U"WX-99LE@hk{EEgG}k`_Տ~ɣ~)\zMHhv$haʾĕJń&qƚBh432L[4+VKIj5>EETQ:Recfj".okJ~ƐCKa)#dESt-ouZss𘊀 .`Ώ@5yV&mN⎥GtmQt`\~'AmqͱtvN: k0 ?6N: k0 ?6N: kc'ؿn{`\~'Amqt`\~'Amqt`<صwݭt`\~'Amqt`\~'Amqt`\~'AmqGt`T~'AmQGt`T~'AmQGt`T~'AmQGt`T~'AmQGt`T~'AmQGt`T~'AmQGt`T~'AmQGt`T~'A.C+m Jfv+4R"|RHT |F,]E&"45A~t "3FuU|Վ>ɣ)\Q wO}j?O*_SI["*oxh勨C3Th0o.w[Pt~ַ.z44kI4?5D*>T}L?$slnmU._~P`Al@ZX#?dѾ(P?p@;`?5D*>T}L?$slnmU._~P`Al@ZX#6tՏ3ѭ)|QԶH> ?6H>#Ld0 ?6H>#Ld0 ?6X>#Ld0 ?6X>cLe0 ?6X>cLe0 ?6X>#Ld0 ?6H>#Ld0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLe0 ?6X>cLqChRQc'[Bh泥?) +”V#޷1ZyBpjX;s$:f{ֵpss |`߰ ]h o,]T&zTo8kI49`I8Re+_I)X/0X۷I)I3w-= yߩOַ&SVOts֟,pJJX Zss |`߰ ]h o,]T&zTo8kI4|5~?ZHh5ol7G=i(*+1`5k!c"C_47?@-(:?`{[K`UG֚uZ58o:bt`\~'Amqt`\~'Amqt`\~'Amqt`\~'Amqt`\kc~: k0 ?6N: k0 ?6Nڣ: k0 ?6N: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0 ?6Nڣ: j0eem)]nc|p]52{ff?9(U^-EVe"ld%gu11IGncV5F99LeP`Al@ZX#jGSF@@(P @(P @(P @(P @(P @(P @(P @(P @(?5D*i/ͫ2Y%RfDg$(܇=-hⵅqEVWǸEZ4ȓj/82R+YGkX}WX"_~Th0o.w[Pt~ַj)AUDNQQ$?FY +fm-H "JRTEnq H FC>)Hi.!rևQ##Iϼ*~Y_j~ 39e~)>g(rSS|`P+MO=CW⚟{,5?GY_j~ 3}&$ȩ5f}$/G֖gMO=U[ZO䚙K;tHrSSt`PrSS|`P+MO=CW⚟{,5?GY_j~ 39e~)>g(rSS|`P+MO=CW⚟{,5?GY_j~ 39e~)>g(rSS|`P+MO=CW⚟{,5?GY_j~ 39e~)>g(rSS|`P+MO=CW⚟{,5?GY_j~ 39e~)>g(rSS|`P+MO=CW⚟{,5?GY_j~ 39e~)>g(rSS|`P+MO=CW⚟{,5?GY_j~ 3hN\ܶCaqeBDOy$ ">c40w Ge!u;#캝‘YAHv]NH;.p}PRSR>()-I%hԅT|#/9&$ 2ےbJmk% Ի$KRRW=dAQ  G᠈gKJ혘ufUDfY*WT %LQ4(mO8Zn)KQ֣33>pW 1 ˠ]=%0!(MiB4Qk>T͝⺇KV6ҖPdGcC&~j0_L@ ʀ9]M+LE5XfިNj0f@ f5XfިNj0f@ f5XfިNj0f@ f5XfިNj0f@ f5XfިNj0f@ f5XfިNj0f@ f5XfިNj0f@ fESj3[ݿD_D@9~D_D@9~EtOOt?=ѡ YѶUVVuyr-I(IUJ>c;\Ti*Y: Eqܑ)TT Ex *ss |`߰ ]h o,i[iS5Y-̹$.;d2BK /xh2BK /x$.;d 2BK /x$.;d C$.;d_oPάeomZ&$(j^;\,3Ҥ`1KR)$FdW;H\w{!q% H\w{!q% H\w{!q% H\w{!q%d̗2^H\w{!q%ĕ贚Mv1-DHK$μj+k {m6V}Kڥ*ԅw+"QYIQo.!PC2Thd+G*zBmzQI+|ȹ̈*+T Q$BE!FdyxZMAM:$\#њ=ֵrT"FrLajqIJР,?_'N]I [od܆v{h'(Td%)<+);̿_I=v""NzcQ% ;MIwIe"H >~\B%&2 45A~t "3FgT@0 O.l3ik$'u*q)Zh2Rԫp =bW+5=5zMR"ZR7"՟.DNhLP؊MrWFyj'rjMD()𙭹 5ۦ#geo:Tw}dԻ6FVIEX'(x Gby~IblW:KB$dy)_rRne1\V.Tq ~*D0Q[iMZІ$i$̈y %5{bʂ+C*aGl5N2\I3C_43?@-7jd~Pf" qi7%ja#_RݓtǶ[oO6Y1V-Df[ug]G=lk-CpW.~M㎞/rj:-l]J"fyW2Zg.[^7L"^ >~e1O;E QgߋJ*3:an6ՔyI3$$j{FAQ{y DGn~ello^Q+ؙsc2[ds)Xo+޼74P_jdtɬ=Lr$I CRV9$mJM}іk4US;Y-nXq.;҅V6y*Ej1tzT$Nue:֧$Dddd[\ bZSΥ~"DtA dF[i+&w Z6ԕ@i:*m SKIm[ռ̏pA>[A򉴒GpFbQ̭IK<|KR6N):Wi23+fmu*0jQZK{Vڣ:Q͵](^dlGm`0c=}/H #}j 5H2#"~4ʥN#)e4ܹqҦ a+tԬkÏdG3B\4ԗp+)Ƴje3Yr,bOBҫ Ϊ&BJHjI\dfj&2ӟ|Uɺ?u4S#Ԣ|m-$!JdK*+J|i\y4['!Ydb̂35(c;$'Z\~X*M? Dh7 X̛"+#*0#?ͼ ciC\u:WTxm%:*̥Z JU6|'M&", $&:MfE2BHϿ`l(jm S$ 8ЃA9IRc[5 _6[wpEm1'Cꌮ%D (-^-*zPTfjs%LJuXGEJ驶GKhb fVSBU2S&W=`Jw !1ޑC5ћ{p6ݱw̔M(zA9}MzJMKkrg@i/V +QZ!` 45A~t "3FgT@0 8T63SshyHOjʅ^v~qg\`eK192!GΝCf幗.l]Z~e1O;E X@N([..RQeRTD&|'Vjq%Ljסصu#>4ksۼ4Q![]J.-K6#3:i&C>2*B& INI6K%;Fep{ vpZiN-KI)TIwJ׸};D@SLȊ:n(Jl4U|{`4Jd$eLN>>+wFDEb-DDD`*u>>_Y)pRȐHJw$+طCŊc3:dLv FY(Z8z8Z_tx@(F2}.!Tuk;\kL#2?c=;Im9cja7!'rcZj#*ŽKfFV٣2{IȬW"`^(P&TޖH)6.L.+s2QaFPd-ZSmwI -Ec-Z΅Spڪش:hKR٨̏Q%Dv2TXj;;XS̕1'KsI)p;)*4uAԇ= T䕥NwҔ:ϘujUp, GIpVRܹIYBR[Ys[ujWtmH`:իr"DɎIJiSj,h4 DʔZ"3 I(3%zΞH0x+m*Q\j#xc z-"26!ɩNjYi5"'$qbDd v]V\:t!R`ӈJL}cnKQq ZV(MNVբ6hA(qm1Eq=X1P-(v9ʹPi2=UϚŒ`SZAF6ir[1QM%,2N[wVчtn1[\PTݱY0- ^_ѴY,Hؔ"^~O3Vos ~\B%Ak?g?  .`ΏUK*ChVdm35RqŚ[rD_eEt~2Q_;v_W'N/%IӺeEt~2Q_;v_W'N/%IӺeEt~2Q_;v_W'N/%IӺ *tJ LT6f<͵)7ʴ>pV999@┃]JJ23r)ci0_W'N/%IӺeEt~2Q_;v_W'N/%IӺeEt~2Q_;v_W'N/%IӺeEtHqpkхj;NCTR$Ȍ"Q"O~dZ\6:C.uhA^u;\G?e䢿:wX;/^J+u񗒊`e䢿:wXy(N;/^J+u񗒊`e䢿:wXy(N;/^J+u񗒊`e䢿:wX#.VaҧH"DI%phZKqwϚ:HrU 1] ZL4h'4ȜJsYEsd[R;/^J+uPy(N;/^J+u񗒊`e䢿:wXy(N;/^J+u񗒊`e䢿:wXy(N;/^J+u񗒊`e䢿:wXy(N;/^J+u񗒊`e䢿:wXy(N;/^J+u4W ±EBF~VF}\Y7nm-iͯ}ױ\&"45A~t "3FP99Lh0o.w[P>)%e9]R;U1RԻI͒KzrUZ;ʺСzP@e]hʺ!C ՕuC҇*@(4VUր9JPhr<=YWZ=(yAzzP@e]hʺ!C ՕuC҇*@(4VUր9JPhr<=YWZ=(yAzzP@e]hʺ!C ՕuC҇*@(4VUր9JPhr<=YWZ=(yAzzP@e]hʺ!C ՕuC҇*@(4VUր9JPhr<=YWZ=(yAzzP@e]hʺ!C ՕuC҇*@(4VUր9JPhr<=YWZ=(yAzzP@e]hʺ!C ՕuC҇*@(4VUր9JPhr<=YWZ=(yAzzP@e]hʺ!C ՕuC҇*@(4VUր9JPhr<=YWZ=(yAzzP@e]hʺ!C ՕuC҇*@(4VUր9JPhr<=YWZ=(yAzzP@e]hʺ!C ՕuC҇*@(4VUր9JPhr<=YWZ=(yAzzP@e]hʺ!C ՕuC҇*@(4VUրc0>hQv4Xa6v=h j{2kuM|1,=;ZCC'BMJ owW/qC7O D줛#I cmo6ٞ0 g mofx[p6ٞ0 g O`fx[pP&-s-WkYJ3I3331QЧKO%$ꈈ;\afx[pMg mofx[p6ٞ1=mo`fx[p6ٞ0uGs$%iIuDdd[EcC487?@ض #}j GNC67r J8-9.j[G#DD)VEY)#ϛq)E>opr֍JmHyHЛVfHcjfGx}qeW%dSrf0N)df2+w|}N;㜎{ HL!Ob6`v3ݒtHFvO*.4'LFh ;* JxB2un ڃ0C TGBCэYI9l#~wz|MQnhn:+9̲G$dGL9^Oge 让;kR/2HU$h򳉰*J626RR< es$&H3Yj)ꉽ#L[]~Y."3:%+RRD/{]4xj2E~_\Ƨ>FO엖iOg}JK&2#2+P2]U:̆YmYӺ/jRqױԮmGH[mnR C|woq4aJgґSOd"q-bJF\1/zjb'gP6ʤ9I hs.RtD76O/?n=6f7_w#)^B>'7\혯nqLJ矊fSq'~D ).̳%I+T:R#N^#o"6HL.FA #,22>`<9JY ɩi Q! r1K,QFgY̛T*sD VG ;H .Tcdɲ$#+w Mϣ}Z U*$YNZ$!N ]-׵ߛ}U&QBO֫.\LY53Rmy&wuxLQ6ky19Ifld̍I%\}FD{`:MZ<\e'AmյMqƞ yM̾%J^$'_a@*!Kz[dBuIf#b+]/芷se*O*v" (uiRy;̎S+t V]/ ֧b'JlFj aNEI"%u'0)"Ṙ9GN& Yc7{6Eru-c;9j61in)Rq-95M<(Zd mL:M!q֕ĸ#4*%@>H Ӊ^#93.1Zq2 'ea9ec+˗W1efMaI[lKۭDFQ%DdFDfW"3=iž skQxj2E_?(I3Q)R=sOK+)AfQ~JL >y)I. DMTh)UJu=k"e.(Ȍ"G?= "MӚR`DfYKM"j;%$DW333V *ss |`߰ ]h RLZm.jeHJd+RLy gjïQZjïQ(v:u‡jïQ(v:u‡jïQ(v:u‡jïQ(v:u‡jïQ(v:u‹60=ZRyF[Rff|*- qŨԵTMJ3ffo0poGqjpoGpڧ poGpڧ poGpڧ poGpڧ -jt*="΢ƎcVFВJSu؈fb+llyricue-4.0.12/help/C/figures/docs-main-bible.jpg0000664000000000000000000016726613053456656016406 0ustar JFIFHH1ExifMM*,1yJFIFC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?徟e4h;3Oug €NygeΗo d<ՅmJ5@F= gO cko2].@SI*&խ5+9lwa[RpJ׎eOm?O.cVvRH-Nf?eŰh. pA:U]LGΑ2 s݌Uk?ƌ_=s7#%/PU5][6ୱyZM<.kOs?a@4{\5GP R=SW qMﵭ;XV%[<[p 6qߌ5Si sMNC[g!S,6XQ~z4Z]kbBL-P^Y]Yk-9 YS?΀9iyg!o0® 琥v3[zN]j_eYb,su>WSr01Z?ƠyoZ_:xЉS_i`F_ʀ44yjoOy>Ohs#zoަ?k?'U[;x10ޜ&i,S=A QGo2"mQQEcG6, zd!qM Ө#W쮧MzR̖ wP0= r*hZD9K9R\=ǖ*yjC.9 6܂ѠW!VBT2dngt[+qQ}m1>MsQQ-T8ʒ##@ {{Mr* 8S# )8$V]Ɠé"*&uOĪ U9C[2k!L(qy#_*i:-mt#Q S mĆ=23ZNЭ,So\d88qzqYr뺤;|pܹ#T_ƀ:+]a*$K 9z#Կb>ƀ:+]ՠ`dsLQb]sT18_eu8d٫c89?g$W,?Uu4W3.@%KE|gi?4x1h3@Ep2ޤisz}+?Ud2Bdi vX׎~ rMd/_iXw˜gQS[$nO2 (t)<1IКmSu5N>q~؍{8J(i"6q뉭Beeaր$'sU_ \˟li*1 r0 S9Rґ˗aYdӭqk ~\ǵw}q@Ut?Wڝٶd7D{ {ҫs_4fA ch883UKL[Ȍ!nRYXLBOS@^\>m٤r9!AU.%b6:>60 =Njxwlrj+Y[‘@DPQ Gdh PN3.iVss%PD#xE!px'$ ۇN՛ef pDNvY 5jym"P#L`Ihm"OfEH9U-(n¡ft..c#aP*grzt8I;\J6ȩ[l{@XdM/r$$)ln p3 f_){mWDaHG^ݪU"\jo2r0=?L[HbI&$EU;u,U@#Hp1ս26IԫbU{H_il{W˖ '=G\QZ)A9Y VM:1D† Je}yI-2݆Sjva;85娵2Nsƫ$*0p3жa{,\ȐHsyS,4mM[Drc~Y׫22H.&!.s}5Mk^od}#~anc+/Gа9W$.qŬ:}~ȑn{itPu"o@}ôlRO`3=C@Ӯmk}IPMGvu8 es4WH(Y^1bEvH_j+GvT#c$(6z=SD\lp1ҵ jpS}q8fGlI*]s ^)qkr"R aA  X+(씬*I<穤h ./l nFT:kOsnInךdZ[ah ,qQG,^eL7NO^\M$6zsZk".`ny]>X' E8"U 44I|4-˕R8fG_SYMKq4if)eQ~^\-ZO;D'Xmc=Ka<ҙѥ*p\AZiFQ-c.ʧ8ŒuE>VKNRI' ~h7Bv)v LR[G$(H>5H]<ܼr0܎G#֙..!M;AEn=1d@cŽzp(6LuڭE$5(0:~h:r!Mc" |tυ8 $Ӗh2iY6qH @qjƺt)-FXtˁLc3{U i>TM1I;dj5iKHj8]#Py2Jȯ+61s txW-* 8ģ OuM6{k縜.Y}Hߜr9;}- *8SБEky%ն"A#[4`ɧ[QweB w uh* +[W{l"e dBqu+,kh<bpxWN<ˌ 0 rsw Ԍs^KWvJd`mاF0sqYuvIZ[K?KoKu1WX~lDuYl3(8=I;ҾH^ͼѬm20y;z@/uM3CԴwY:T'F}#Im?́Zf7U 68,L@]G$hlq^7n\B0d^3~ƔKmd=Fxʜƙ Sh۾ ? }H\%j0ZKpٮUJRa8:֓\x[%n!ZyrۂKnxwWFf$t2[uܨXqHUӠ5qhz+zc@kxI~$w\_%;I:}x]äWQ_ڬ`r8+9򡺂I~o$ǶϦGBΗB 3:@,3@v%{iVanK%_e*1RĆ಑9o^9/ITG+[]x0O]|ƙj5HdWq)C R]BȈ3H2|Ǟ 4:V-ۭ! ~uL\E*9>kzCⳮ'06?P7kc&"Y̸ 'qEhjtz(ņ.LyX 2׭Q>٤PZEn,Ec5$z}D=ْiV"hRi 0 k8Xx-Ī qh+a($'?"0qx4x*VŖ$ije?1}rs* .WڌGv-Ȃ3ȱ)^cN1}k*M:M=ȷ*]l|s8܃q NKnv܃`v:#wֵŝ^%h>2|{3jO`) T-`.<snVڄş,bַ0b)Go/|gmpJOԺ'2/HpܨdDX.y#Hm%4q۬Q$eJƃ>\XyչO(nEs#q8Oݎqlh?i~ ][>o<5`@r@:8ݖ"`HA6s#޳]KwMwų`۞ϯ5_QE.Qkpj2дLww]xcCk<=ql5xc鷩`;䂙 tҝ}Z .DJh A8S{hCJܲNgϚMAm u4ۡH>Vf]@=4J?89g4SEaxGxmU$c"F~7/D(-Ñy$#'*(-/>7*g̤>Aqy-qX7'#|s^kh'8ノsҀ1i{u`rw>#ʟF&BoM'W#% ~g"}Qޙ/hO \#TUSD8fk-&Hwoo z)ky$vʭ71!;kZ\sI2G߽As%wM1 *$'z"ԴkvalGrP,9A -{w8ԜZZKi޻d*ñP'%c{u NK,̥BY 2 @O'(eVgo5 b\D`ᔌz>Ea4  \)Z)4cDO$2QVR>ii"𭮳$&\ =F3*yW[rgYZo0séֵ K+#l[(yp\ۭ̌C"0ݔ^?';{8a>`縐o2_/wltZ&]:ۈ ue?j+}(Ʒw^*V& #A'=j;om Adw.|-D ֕;Q+vGHU1P1o& Cn=Q9F;sX<,t;Kf**ŒOw]7V2Ǚmdi" (P(`JҵWm$XYMjPV7۲mkX( ztO*e*AZjI(9Qvv)ԟcEi;A]ũks2KsV߇\g'X眜cu_^nmo!U [qg#'Fp# ;zqWJM7.ݝ{L-ny$\3rv<ܚͻ'ҵeǧ+$qL.$Ȑ6cNzi2jldf\c.,pyQXZwnm $Q5H}+xz9G1FtDInZ&pIIXMfl.{n+ɱYH^y:@Rc0>-9dxF+4 RI},b;ڧ<3>Ě -[r>_ߥkOiڂ>ؠ*<ֆErZ׃u[Ṓi>wʼ'p‚!z0q׊੓G+X%vgVuP&9 xb2(&Es~Ѯ;nE2j1k@u88WIo(o/19G F<+W_\ [KbSA*FxR3ďX{1@:`_CE;K:(pGx|3)g < fPb$aٹsߦsGX9R\rYF=^_ZG= vH9 gZՍt;MFkŌA#UuD]O AǦJwRja3u7VXn`8$Cs⸠<91]f2< OO `{ZiWw>Ui$14l+͘qb2,.oAݟ6mK%,X_+날Ѐz?쵋b4)2/M6c,0YBx2@#-@sVt`|iUe i\;|8(V/Ǩy]B eLl>9= g^ Q?)#܊otT+4)ӥr/3)۽Zim [vW p7ƤẁYwܠ [Mj"nd2̀)z2G4mLȯukE[}/y+C9Օ{NQ5ҝjVI>3hw{0I隆SMx/H!8kMz5YX%@lB-ƙkxo#%d.6Ap  =kE3m3F,,eY B{N:`[># +5 ௲(+WXDYx$ O?K.-$I$8OJbjԵ -DK (OR8 v=ZL%#ƊPn4 [(-mHX$19%I U)|T5ܑfvE@xP\Z[4&U;/Sԃ6\;}U+8q\-l il'*̪Wq7 dzWA/$N#!a{k >kk$ig@&A=qe\ZL2\EI$EUi1INmꗗ;yߺzHGFo-rI,oa<rQ 9jՄΎ)4 &!6QfBGoSR%qeqDS1QڸL %ċ{rGܜ).@ @rϩ3Jinnn$*p͵s^y!Ҵ[y`#PBaPaWv[hC$v6 *)He\vq؊ʾ5q Ͳޙ9R9Tm6mND]X\õW٪ ~`F;D&O[{2Z\RKehӭܘ2QKIǻgaMdT)~c0-S'K@&wUB s1zTߵgg[ʋ%ÐVM+gKp{Vvc/!y?F.ͼO#g89$bmZunzqMuio E$JːIrzh.h kH9>ڤMU!g\ TQ@ %~GؗzIPMY?OK=dŠ(>ĿO(6J?嬟QEb_';b_';Q@z'zP1=d“zP}Y?Y?% (}I/Qom'ECn紟'紟Pp@(C  !"$"$CGi !1"AQa2q#5TU$34BRVs%bcdtu&CDESrFe 6'1!1"AaqQ#BR ?vU㨏U4xͭWd%)AUAdEn.-,Oi#sP(ApXߺlg,}{ħ}ի{zAxEZ~V>@6H~)ך6> R2}=joE[+F(.mZ ִg'3mR-۷xpJwZجh4[~ڣUVۊaJG%D):rnXՠ'"~g^ &ݚl>٬A=X{ʇ5-ZųNRfTWVH}hmL/:d ֝sZԻYu8`:Y JVx3:APQUoxy^r>=^h S-5J:SzƐ)l>’ڊJw2'Og酳]g6zh2lȃjl{΋u=r᫵0ix4IcgRnʅzKZiW|';JCh[iRN =m_tW!T^ KSem  VՕ+Qmz0*E^shPnSnJRWhm-ڪUjMVc%jAW'dgt C.O|yhQIt;mKi:'\r+**B; GLwPu6t*W c= .ݪl>!j~%z .ݺl{?h0lC3ׯZkvUp\ 7rIFj@,lۂ$ù@!]VioCxMy4!Ѕ$}AAt0f?GɅff>@V"SSZNZ'#rhQ\'Z.KZECɱU?Z]΃[1C82T2"\yXCUm@u: qn+>ۑ7BLv5IdA*Z0ތ8'@xqj;pxSxܙ!g.!)8t qk=f"އ=wݢb(Lڔ}@sV^ 8hen^TڬwT?XZ`JmoSШA"RJ^H4< C*+JweY4k> \Q@nEu oRZLih!#(jʔ6W.]pHpSYS mB#%nR@NtM,RkURzu:qRfFI 3 ۼB>r rޒ 2KTnƷ8mR3h|aO+}9Cz$c Jyl@yϼiVo Ɠ]'Aq[夢:P(Om'wnзD֨]RzIнy[sע@NSL8%<܅5X[L'ar}/ SRo%m;AiI8R_Y48p{lx4\*mFﭫN2@G7MT[ҨuH;RX#!d%*h q/U;~P§ʸ9&JB8 6R;gjqXy UX15o 55 %qRʐJ('Mw"ɃmˬSWi(Lt7OfB <Khڔn/j`i#Fh5rE)SQSܯI>hٓ13g= VjT[׮ד\ JȐ1\[BBd Qt[΃1Y=Ze.UoR@ʾ#$LjvTHOJ-%+mJJ A}dsTn-T"\gm1,- ”I ƃ2Z^nK ilu!C=A[=z-I_cԇ~w/cE:ʵ[=[vTvQoa(6$a tjZvūDEPB/wm)*/ HRI#: V}*LJA~Kd+JCh->vS9׿]޶_l*|Hb2m2A-8Ha z@AgiPa2dM|-[_Z$ $t ׷JF)mhikh!M';tXl-)65ҥ$` QJ hr̥)1u ݵBʕ+QJ: 08ocbS({šrT86\Bw($- VU' jܨ*ޔJR@SJQ H~*h+BUaq39R0!I#!HI j7=jXСT&IӐҫZU.-,0UymE9WR)y i)Χ+[p(mpzS$]n8R(VJanGuMÎ Wd4 uX[Z"$) H gh *J]=jFR-6v9R { <E)bmJO5*TB#iZARC(g~={@΂ROmCkx^^7~'ӁAq 01IX."2 m8 8'נW ̟G.K_d-haDdh4Ңj>G*p ԫ4Ȩrm%\RlprG\=L]rZ OCw$О`8 O]FPj@*q8Q}lJ6צԶJË 5Nt++PB2O(zd - hoKiPZ֤GR*pFN]6ԷP]LC t\ {^vp;ûeafvjsz9-E%XVTAi\q7`G]Z4efIrZZR:=񌜀閭2*2" \ҥ/*IV7,%YS!R cǴ#.\D *[5všryB >?? W>9NjЪ~4ҡήSk2iUUͦU g4PƃeoHT#M)b) | +yc6:P<p4Ϫ~4/}SsϪ4g_u> jXJmLdH;iڟt5OM+ CA9B5NrЪ~48Or(]4ʨih/XuJ6g<Ϫ4+ CA9B5)pn+z*7 |ڠy*-9Z >9^BRiYiR\lcs۔ l#N.47uB(h(;EYHq YHDiOj,[;#;pz?WO|GA A9zh3>|_UrU2cĨq)oDe!SiݹU ` tgQި<.%L\92 gt[\ѴI;@;JHYP)5;.%/(-ca\VpB:hu)5)̷Qiў%HAqc+,oi*P\ FXV`SCX^:e|mW@1 }QDgR KnY ؼWM]^ /ŭEG}SoqA~G'[-/7k>tE U²䔜 8lt˵64u(GҋRPI8(QQ=AVzh EڝͷERᆕpF9Au؈a®PNw1-8IY̭ؐjP;4\(Z<8[SOqQC |"I$4bTs1Rm,;obtez );a )qw Gr&S1U6JP-ATPP93@v=X^ʍ>.Dmh@)%V怴@:|ҫX.xWuI٤8A ܵdt8Y{5 Dbu9k嚄$*I߰mdRt@T8Yǘh5+m%甗6 :zǷ@<[IK6Klzzy:ꐕ)Xt3: SR\uYf\ɒ$֮[iFRBRN2{6x &ݣ*% ĕpGq>vpyx נ{/T)kje7A}=4w[T5ܧpRF#Av+*vjtq0YB(o($n ۩JUr|%JuF5OIFMGDGmN)nvj}㯼]dHmNj$DO14p22>=k:'A:h/o*Chri2NTb=z ~-q]jTQM>Inqƀz~M'OA^=}Z΂gA^~3= A`dv랝4ϳA1tp3WOtz?_~4 h/e$g:@;rM@O.٠.8r:>^>~3sVbM8jNHr^VRjq.%[攨v뜌c@}Z]}GA?th=5y5=ߝz 5r¡ӜV %i*Sh1C 9Qp>c*N<ڽIp׶߼kG[+ސײ'Vmɑ*.ƒR) =tܰХ!#*Q1ԓP9D+f21;C*Ke$9hJL*JB#?N}N*ߧS;Jv18~=z }MϸO~}M쿸O~}MO~}MϸO~?S7Bv3:+o~}N*ߧ=z #k_=~ܵOx>v={µ~;ǿOAj>Ns?o~>-og-<{l=}i?ǿOAyvr>z!-?rߧS)M(*,.CMG{z 4xLie4Io[CaM7%CP7*lEh!qrv! N~Af7vu8 q޵K"viJ7*棷2+I Ҳp UT#XLūUQU)h<ל R ~ٱ.DC u|Nra$u> \ըnfׅOiqPi̾%7rH錎<6z/Y-=rYt U! SWD mW/ %ʔ]s&(_T9a#b8SV8cGPj֥򓄩Ɯ[JPǷA>H6Ee"G\MxojW^rFqRw>)52T-ZQ*[)PCJv8{Iw1dIPP\q*|!a;0p&ٽbÒӵ:.i Ce\l#<%A zUE]<=/Ӝa[)Jl'qV۸nkWb3=k%ME) ;h@xPOE%EYKe0b=,m:sh)2:r::MMMMMMMMMMrot$RRTނ"Bf.[FS5bC!m0VrӶ:% SbCLnsj JsQtɏO8 =IS)}cp}mqlD6)fg۷ٗ!qS%ݫC!HP;X&QU-[ԥ P݂24 *(EqXM<Ӽ@q]c s:vmgKR[DL' ĐC.,8$Jq &D"K#CBִZԵw$R~]K׷:-&-R Xs! X줞Pz@ } ҨZ:lj=E!3c#AZHz1qpʸ9nAېۂy z9*9tlFٳƟlPc(h$}kWuj:u81*t4ڃS+aPڤag-ft)[^5Q<2A褂r5%)JR tA4A4A4A4A4A4A4A4A4A4A=5 !Sgբ]1quJ!4Og:vP z4 =)+"aB}@|Z 6 =@v=Nc'"/Fy rf>]*;GeTIZ qkU*S]qXq !%d'):;ZAjQ1}BD$֕$XN&]4kt%]&AJ?W̛M7J>bh<&7I~bh!cc// }S[$^_0o4"IOM>_M> _M5F#4ggAޟ Moygꖏ==dq)?{ &}RH`h3JGɼGITw[Mwɿgꎏ]FA2?o]~&]4ktC˳}.O.Ϛ Q,3$&=&KLkl8v]4W=[{{tSo܋9Jb u9Ä sNQmen2܄n=fFRw ~]IvRRj IAOE iEs,C=[WBA%P? J=P3T͍Φa:%IƂF4'Nt79SZiJW=tnw T!mJ=wBFJz JP& 8-dAI}YTP n0ߑSq #pO@I8h4nP~Zԯzrܺ2+rA#Blvk1$nLJBV{%A@^4 DɲxXi3*ζ,wJBA'h2ݻtd9ܿazo~*ܿmAԚWPE[K2SdèԁCLzuapHܐh7&ܺTB7/W@>rnW6mk a#su5Zԕ{=G V!2a0k/$%)Itt}?jW6STU\Dhz0-Ee]Ps+AP7H[l*[#ԭ A[7Gz Jܭ¬&$=@@jܤjF˅ .z4wt 5~}F!*5ͶgO@*OS4mNTRTHOEӠPR##DCiJT*#v@% ^o紧p!K)dSQ'?@O^Ruh`>ͺKlW-PzS?kKIu O|//<=}}sT]3$u-2 8 dOl&5 ٳi*7jʒ2Ns=8zmUB*=[Ɓ"oT&Z [$K!V8IŠg.Z7E:Md >)·nƃE6?fwc?Gl8!3"tnr)ة"kd! Q 'Ѡ-Tq$T"& Bá +iL:8GNꓠxqN״NjUv䱏G3wm\tÉvjAT[*TO8n2^!/tV0|ム:NsT|{?cmVt 6|U))E-=>?\h9rxUTUo75ToFqw$ t)S?TXBzWtqhPf7wDHNͧto'BUI}Fӏ*v 5IQѧĕN\q#Ҥ[:9NQ*ʴu:t+DJ=1mm%K=ּ[SS@pm_@o \t)6>ޒRjHS $@7s㏾6wtD3>mT )LE} @9!(Gle%[P;_"]fMWP7zS `á 4 |nk7|Rd:SAQaZ[o(H;Ka)@8몠-7SAٖUPRf~zt;rcV,̦8۩P d(F(FͰtUNH**YVVZPIhs|T^-h%5 уE $Jr_^8KWil%$!}KHܠ4ݱiOܐeO\iA;Y/,Q'$.\!JTT }PKv! %0@V.@Jvmmi8 ,qx읁C=ϧ@ϋh1RZi9씀h8(Hl%;iS7yI#r.+bfpV䠴IH~hpJAJp4.ەTl"Wګ1O< g%$;rВ|lz9kn4ضbźj*&Nu,D6̇)BV*Df!I ~}8\pQ?͛:h+U~A:&ݢi6R]PRHI t lqmF=KʫLڐ1}ƁnPEיƀ à tp}cOm΁ã>WfqU<}t|yNJ +e4` 3k:MZ4A꾒'Jo#t_)Q-AtKd-?gtjc?@ZJe?r}pV<1}*F3 q!G=4dcM.O\+VzWH208:h @Hƀ V 7ƂW\ZҭFH4ہSiII#?)/kGwABGjy*.ROɁ}p%4(l~PWc{ E!SCiKdtFs^gKxٷo|@)y4'TImO: *Rvj/ >RcEr-u~hO3&iv)1[,*ܞb,(2@ 4 2W0Xveh)1ArXŗC^;KRGb2}]{4 ]ſ-F*tnj3-Z]J3 C'z@ig]΃c.? w]/QXVХ#bq9tzrmTʧ7YO6,<$$) Chż[dcEQA$Lr(>^AjQk.8ΥG3IڐǷ}Qw.9.&g!Ɣ@$ÿ}(כ-'hbhxw>ƀݑNM9T#D*F -[G:@piLEZ>CH~uX_nގ ,^m|Uh}2I׳@c)l UY5lF\Vۀ5 x*%]2MV[)Sv;w%dp寯}[ż6+? '[']?4 fnؙRz KR7&ڎ;ѵGIϧ:7"5q&UiE SuPV= : Ë6;**I/بM-g *opu>)zC-4 Z _r_NjW.Dh V_h#5#;_CjB&U[ӂ[[@GC6"짢[lIAqҨT뵊6rK'_I9uVVYQ%&4Yu8RB)>܃O}{/G3THh.)|(N3=~8CaM.xJ<χM3-[ѻ? Ghؔ[P+t9 VI듍iweմ~I N3Q:5&#.JO:;&bRؙS"R7f`~=ia+HSJԂhý-U5.Ml8IZ 7-ft &;q *4gDV-)rZ$3nն- dG@O]J~ / J4R^ -PYK4mn-ÊZ $94E ZIˍNrdRXGt j=1Dž%02O渠VG@rVFRs}DnCTƍNߵQ-5-y2I0 [>m[LX';[Iwjع/'@)#DmvuHQ펆9P#q5),l=1 7`v]Y҉}`AAh+VdT۔+m)!%PP~4ǜVu>4;LuEqhE%?&o3o>w^IpyKA¿uz/rx{?|Cw=?h-6ݎ(|xހ_^SVտ=.mfJ~FlIJz2h9L0S>D^UeUnKR9f*^R%ijK`w=yOUhxfm-c1VdWBVS= ԣz+u:qsRh>$v] M%\LߗUu% mum/g*.n'=.+#zI4`sVA(gγ* uu*ϜH1F$2{'%#s[շΨx"Isf)]1'qOTT^kA,ǂh i*WL|*UJ|?M$=SdžWcIa$GU}h]z)2=:Lvơʎ5lcRѹE='|iI3sm^ٴhdVʘ䡵m!- TⳄpOLh/C->U0{5ܭVI;'" NyHX,'pJGfyBe*!͏8N^ @3գTRdK Ǘ%3=Oo0$cA㪩\E/u; CbRh+$KqA4R1dFG1I#Rm@B3Z\G}ؐ}wqx^}{~(:tb YM J%|Z*].֥%m{''$z9nNrdBOntXJW5a:@2O y.doES Ƙ2sA°@#p8=)/<ӂ}|Om3Bh0fSr窦+v^w+<<>q]? ~p*q%Kic)PROȤh/ %SF }ԃX~]ݗ?0?#AK\rc@P ~4~pY:ѤƨZd >*2?իA?dUÿ;t58uI[rl$(y͇ v> jTw o0jF7E9p3`>%X\?c?΢ZfL:w@U&2*0}Yu$!%ĂF@xh+h[jU ,'>}gM}b/,j&hHAC@F}zڜ)hu9婥r:z w: % NTpIR{J=TQ$^n+\G¶g"ւ621?캅KQ*n۞v)[I:g4v!Hhcm.oޚW 4It:K,QiM8g#KSksT:vMӝ2eO|INzvq9tVv΃+U~A:MPGDhGӌh܌NG əC]S|aQQkt5Y2AZ}+ @_˴V=P2gfVHY&IW"sJ' Q'AWɓ ;g-[>یmV* K J}asI*h 9\x? &CBs)V($A\S&ѣy>/6XU+!ZRnRl-+3>7wnҿ"lZM6 HBm%ڐA|Ӡ̺L9bPCke>Wܶ+tmXSdh9ZGLjѨܶWXej_Hq|'AZQ٩65de%^z^ԏa|b bRo;l+go)ZWsV-w*KSnsJV)Š\UUԒ:";iɠ: _r_Nqq\I)fBNOlP@L?Uw !UIӦ\9cAbTvO";i\9:U% )O: !l놢je !_ڤ>wkՠ1: iU*IJr>Q>QϾZ#\<|9|fqm6^]*Zh9G: ʊEz~o: l;0g2I.)5"R#9sBii{* z{#V QYg8kA*(I"Yt@N̺Enb62!6IKi#w禃&"E(-Ķj> Ѡ6tu]ݲ!9g/N1^Se"2 [iꭥIIgY"M6[ \dEYmלؕ$R}9a63$k@|qAbg Z hLQmLf }7!-A RT8*{"*[=qmQB-*JOA ّkctVX9f6l=9siu%\إ % ;h)V r;1kmCܥED;A?!FS/kz¥XDkqAö^6@CvLE҅7![@'=#AauU 1 ?q$6 TvE?tbTsqo7 B].ca€]W-@t(h59f-d,f:QӀ[V>h(/"A`4,ժ( 42>Q5R1j&S ./ _r_Nr8C#<Ɏ(d+ h 9Ѽ8dmd*n#p3=}4 R+3 c{~=%k VpPhZ?A7hP~:ۑ!o25"{Re:L!6Z[YqӴ@;p^rV8gIz[rf4<194￿_#;NݾOٜ~^+֯v-td.UC(FYi8)S?\}i4gu$juJeug1Ke *[) Q3n|DƆj;Zs"&Kӆ┃%m$ FP'=u-O5!N]xiQS'=}###ўڅ*=Tcti> OBmr^wȟm>&IEO4㵀VmUҠld Ig!q2>Ҕ*G|Q[⬋:!4J%nғ%AmZ.
MDRXoλ.3iR'6M3n.1Mj!A[ &c()y$+tqJj57M)TO*ص6r>'G|#%وOmMW+jzzN4x\Қ] HjX\5n%!X =:4(!rvQkȏdNJ_Sl-MҡaG#ĊSh2o0ӵhPe >yI8ƀuvfCMhNғ6ZԮP>n+W.ķH!,ԫ˕W1Li)*[o==l[18qܵT%3E5<: nH)J )B +YۂM:aB; sq 'V!@f5=!qA!# =h|Χ+ԧB]:RS2:YX8Nh/VN?c5Tb[P82&22qYAVVJ #ARʃlo~q{l]Ij-ŝop?1_iϧW^iϩ'/·|gP4IW+zVTU]?>)2* q ΟAT>h<.J?A֤?-_|O|Nֶuz P\P:qp?A\g/?נɸ>͏^X\^"8=krA`\MGοA\-W2.>{Mݦt?>"mXBeϠȸ"kC=_,~}E:AWṯӷvX?C=yvfc?A^f?Gx]~I>XpG'>ZkI>·gv+5tg;Nx!髊TH'vh+{:RP<^G vBvy﷧lh5[՚-.؉OpNT@I :^&LVgFkortYNLjeq˭ؖJTc]-牢yEhr M)`w 3Yk7:TU[Hv#v#!Km69G`puy#=ϩ6-}ck>1cAJ6zħ?A A< 4|,Ghu_xY7ch0`Í򴜏Ši 0"h1`?ca0͠ϓ)o6y6e?A :"4͠N>OSɴDe?A>1}?)߯AuQ| Fhh  1$?6>_ؑ ~c|xHx9ah'1?_ch3"dD+> Gƀ]WZF%`S8IN2ii[p= k'/`C7 委m+gA<4Lv}.4\u_Ry0#Z{ H͍|?#64&LV<ӡ)XiR?:/fٶ\YUxQe#XHemr@ף؝xW4ג3nr6Җ0ׯz kIY+QZsqnzΣ*qhLJMʁZ n9%g8537ޭwv|Vĵ_uzgKm ]lreiVI$ײN÷ 1z:ֿ KsڝDkک ޮ\ 2-$-8Jwcq8\mYcQ""{YiqN!?k.~LRřQmRT渤AOĠԓ$T3 meƣ˓l9=tzᘉ;!VӨ}hr(j ~z4 pop&E!%R$Np#n`GM:g ūŪқ~٦0bTK-`[k7wWx=vRYVmʂ0`6 VT<䞀-{hK7euF!U* &J<H x[ԛڛoW"&]>k{mG)P>%I @>˼_xip.k'LPT5dR'@+XzYXqrLq\JTyDQL l^X5*6PFxȆ[әJ$\}JYƍOSrBRc>2dit4]Ov1@"(Ot/) 6[ f }Tn*V(d9pq'KRú\QRS Siq#%\RIK`ha=0 z?ȯE&#έ(iՅ-G=Z?Į0.}hPZR%OHNS_I{n뎨*LH)ҟW}![`!4Dz*40AM4CJ<; m`)eDsmއTAQL)**!RH=zFeW_U&:rW^sAU~}Y9TKԝXsnAA FծfunڣT0E)$yTߑKLMo(ALYp _,88$^iMZ5E]zO4 .?+ :^pe$Q g3X)yGѠIeuM Ù|CѠaE~qӜGkcM&glM!OnzkqdM렃A:M3A3oOOt: } gGQ: ^Ӯz='렞ngN :&;dw? wLϯL 9=4@s9'4`s__^1`΃L/&ɠL UiYV?V:GNhڔy7>SeDWz-*u%i탅 H'³:W]s_S,!M·g#@CʻNc4A1Xn))` ZT뷕F~ѪmbO u-"9K^wO)]Ӄs%WֽByNBZ6&^C^{٨^U !px{i~C߽i;A=:*}_Tۭ[nU:e(8BS睪Is(~Aj+x s*IǑ9%M*]=n{{Ht]V,frMu [o+.((##o@ZJWٵ9O@)ԦRFuVs|2. +nNtͪW,uyM$;# pk1sUnbȴ^!ʋICIs6(J=2BFG Xo˦T%g[RNʚPm.)%': jցKL&vSiEyM:,Am^+tͥkZ:KZTvk.r08n(ڼWk׿,bWRvS-E-)XjT: $'Rڛp\ze1`ȕ^i,iÃ' t}o5T-zzDOXRO#Kw 1j ^~ R\銆@>cK))SXIXƃΌ/yoSK,h!H8줐GpA<>qˊFxJy'ɬ{'Ό Jʆ|qYR-cW]vnE*EȭBi$Jd}p(`` h[v_n]PkqDwZDi%Jd~暵^bԥTfJOMzs4ISɧϭ-KVT߀OpjcSQaW͙v3h9mw\& ᪇)7+dLpIrgp;N#vzcAxXvL*E2,TfDwC 9УN I*#鿯~[5uز-!WHriyd)\ͮm )RLБ"V/2 oԣtS-2mK}.'8I$vtuvF4yS^R$dRBr:=t (p{PUwf\H2HZ:9,߮\ |̚EYM6Op94r! #$Y kE1KTi^d;q-$F"´iqjvKHPX9Pђgn'jGbZԩ$ :JqзTqQANv@΃Rۦ?ٺqUݍR"vsQqCPج$t0T5MjXH_FUGY"U°po'@_}+U:4{FH*72gTt2ܸYۻ^ ›|RPwd*TT}1$=yG 8IR > ô#]4VL 1G]nN NR}#@Ȕ) J@H4 ٕ 3mH]-Vy%,'xË>U&Mz#EIE5T$"TTD o =&ZɠEr9;-2Qy'wAנl[b۩TA}U.d!Z;h9ʩqÉWJ)5aLM1*kg%BˁEKi8#@vkMUM!lf 92se +vvch nT%R?!)N]R`IAʰ2UVUEjZA5iqk.|9Rޢ4W{SB)')RTRTPAWe-I;]BI\!|+4.{2ڹUizI"3F~6ۭ)+@ BHӠi4;V}l8tRN8TIƃIhVeٔi}($:Tnu7vQ*T1]b\)^3p6ߗiL]}N ;(*# n.YuʝFZcN3:ӧn wMi\zm;4pRK|l[)(1ӧnttȴtvCYa lkb}fEmm3&<<+iiR})$Xzж^Ufmh7zzUaZ툖B`Bt=ɚpB!K/%C$:  n~Mʜ\9"C# R h4VfJʶhSH2f.-eՒOv*V03!v[K৷>)m,R{)$xadWZ,T$)dsʜ<]Af]~2dIܙ ϼmq\0<$n$-jS-Ȏ\Ihfے,h΀ab|%(ۆ\uJY ; cر-{rZT]`GTɓ_hÏ-jJ3h gAR[Eb% ԥLe!Ga|'[`O׾Ao7W)SANG)^guE ΁r?u_?VZ$@r.-&eYJVؐu̩ິ c9P:ddHf1I:"!J"lpcͽi\vL N 8@Rr\h_8ԴSs]6~ Bq-@K>ݟ@bK~Ԭ\*"54%ԧd%uS&hu6 )pLm*Zu P#gu{qMBҞg*t=/)VǛ۴/ ]X(Z@"͏%) ۉڣ-' =@xJ] q.}%3A9@N ڹg&UrHKmk'#BûhqNkjUr's"+h2d/8R TNq^޿ M ]TRL5m;IB=4xvm TIOs]F7XWa##!J>sܶvBli%G#RNH8;rhw:]JUAY*۝K@29+IÁo_H5xO괩jZj0*55 p8\BO;V .O2m.ldg I:m5_tj>BV~Jj"zFzm+ D鬥Ge$'SZ 8|rW)ӔMj.Dh O`ァ@ENjuB;nHjZUe߯t3nWTevQ,)%H 6 T36k7PTߎa|4K%JPڔ(e#u{P*4abFrޖ!:mWPۉmNItWք; 0[S1ZVѕG9%US}Ҝe4kbEyNɔ\j+>aʷPUp,]9]4Hc8Z׹ )ܐQ+8H?PzuQ .j[uXSw!=U (qY7 Juv"iXeSjPTm'bC!҃В4gm 87n$ "i+pJ$8(PG]wsDUĉF&=%B6g>=R]*׃r[Vh.rR-`o"fzՕl2%A WB#' #gl`Xx1T]Ĉry54TKqY RZJJt+ggnjx9snV9 )9J}8j>}VKjO3גn%*RH H$cACfP)C)5Ur IQH{݀[JdiV]npZg#Á\T1d⋏$HqCjPp: ɱ.[&kZ=>Lu%m>yJv0 u]hgS FmTV\*)|KCekm,VTAܐ@:  /nlUnӤ[Kq5"'*\uvP)[} p\A; CUƕo7d@7)ܺǚzhmV,h)W$w[RqsRs(ʐi  [RKU~n5tDњZVFO-I$,C9* v X+8HzնA yZ$ l ) CkJzA*<]@X ތ8$xWm_r8>/7:7G*3\cq1`x4J($x5$EGZ\ݤ$|KKOD|<eBjQy XNCpJt΁gP8Ej֭S;Q\7)ˈڑ[@[e|Uíj*}j.B;rI)%A:OoQ~U{Qw$Kf)4y) uiPJT@=4 ߰xQ@nT +d8z Y;h&ED _:b_Š#qgʭu:B1zJgtAAɠ u_f=*סRnZ&\Qs(-NH@ϧ@`=~'q#gAN@.u~}ZEB ( JSTny#4}c^tzA~۠y+ٗmܐ|u&f5mڴ>rPB3z GArrz #A0:7A`c?qA1==zt}?נ:dzdl!=2{g??Ab3k[7]W=WT[1U%[¼Y(r0s^NSթ* S)um chR B`AG= ߯ct?A4b u=Eɠ-q}k#@|UFf#I\rb*;$í:[RP:`Ans7wq7-&D:Ǜ*B)0PJ :h:' *Y~N.%fHȾ 3)MFjspV羃BUn3\OE2PaVť- $e@5:YhSem\uWKnwk`8Tс@W~~.v'ϫ̚sqhB֣))7pۨ)MOWurVki%D>Chsp#I !Dh8.cmZMU"+qg;:I˩- GNKW*-#{(ZqĴT\vpN4M&ƾSH])H!ۊl(8 VƃVn޷n!*^PŽΚϏ)p9\ 04I_XTMv-6CSEIiJs87k -u.!5"pE#fͻrHf54B^)$,/:lA€@CʻNc4A1Xn))` ZTwtq6aVb-} !󣩸e H*yk@c7:m=8]ufuŊcWEz¶?DLZͩLe^y{H;aP9'5^U;"vJjܵFaWPbZq"S$6I'trJ>W/'@E?ܱFn?"?)nUj59LRoRW"\j"$Œ'ۈJV2FACjAD[rB!(۸, Jʂm |^^ۈ2ue<_@ ;(ޒA@»}BL4.H*(bHxyF 8ՠpvGQ0/r0I$mdC`Vi2i5HK)4 (`NԺ>!9YS !!pMmHO)DnF!s͹*Uj;-J NCo/$޸=h&i#o6ێ@Q^ BK즂CV>G\!F᭙@CSN-&LS K ujK@`:v頲i=~Fiw#1;sK%(7cv3]&=_ *:Ӽf#v:gA ;N-ND(+P*':N_Azjb'nvP4Yw=dV+D˘ZK:$4Ko! yC;\ sU;:rRBQssh @Vi$^p W!T67!}aDڐ9$ppFj lKAޙDQS-ĐA9,4%H$tZv}Y$VBRIJ=I's"zI2B SĸJUr$I ۩\qυ,]QByʗeǣ ?%כTD9 I'@rJDǥTFoLvKN KV3$ؙ/'AY'>{sNSCEDg)!وj[Rc۠l}ȳ_y->ju~kRk)1i_yP'h8zr57vƝgɷZuzZ\HR!kK!dr=AӼV;)Ű<}(Q)g8; '$Ǻ jT()ܛ\9N2>XPBBJA@ 7p"O8SA԰o ʁ#A[oM:KP[Tu!;86Tߦt.'&Ӷ}ܶEM6*SCxNPす ;W7qS2m>-NcVu8Ωa.r[QX*wjOB#AνG@]<2h0FgA)HTG]-Uh.5'7NWRR:Ғ+jz4֭jokt%K5yRR9sY[R NrJFr^Vu2lH&y51 KC'BG-x)OT-Kdo3a ~#R_S)uz\g$ߘAVZ)YP \J:@"/WݎëEƭyi{S8BQHIQC賥G C1]ugHʔ}ttӔCКR 6VZ9ZN;zFAߥ/<<_-s'rvݻѷbѽiwE~S#ޘR\xr $ N :m-h;#}#VNfDSHXa(-#n$dt$ [ץ.|]H>5Ӟ%|I+ u̾3[C#Ѯ 2RLƊii!+ o = ڒ=g@U$d]{^$:>eZ[(FX13FN3EJmJuCyN Y*N= JIP)#]A4A4A4|A4A4AV&_ q&hzO%L[q )]z;7.:,+.Rǫ2\APm($=Qt /Y^-.[]lS)1̖| RNqN= G?hnU^(\1[k7MBb'uo;<[%x=4ɮ۩x0jd#ڑDM!T)L&9 dXL:5bݸ!*C:Ls2LwB,Rw7r]:$#'@_}\C#R J Xx/sAjJHY@c[MOS8rP@mm#0ݒ:w9 iJH@W L8GuGSAn?_B%,2 RҔ%@n'sz־!ٔ[z۞mڐ Wq t36k7PTߎa|4K%JPڔ(e#u{P*4abFrޖ!:mWPۉmNItWք; 0[S1ZVѕGA4A4A4A4A4AV*_ q(~aWŠ+kiթ.,.L!ښyՄ$L8D{GmqFT bUair$Gb3kƕD*JV1}=bBۇ$ۭͶ)m*PD p :Ym}W5ok_@PJthU@ju<!L&}8 |Ï ء\K䚓U8?^[|Mg1Cvm9IPtO>AJ5*. J|LJ]`ڝ* :h.4_f=Zءnj%>:C6Auiѱ4e#p80t;}z{4 {^'B~.=_fz_4 `g?>pztg>xof#i-(:@BJԔJHsp_47jtkvҐgV% #z };?z-@Š$g|N;4j bE7+0 3TJR%=rt JҕIZTAA4A|]gA>/A 4#?gAszة/'AxѶOVu/ -Gl%6CSJ:jJ!jmhhp$өϯ[8qL~0AQ|fQ&Ĭ&R@jubA 6u/)2yXwuN򉑗7-$kPT%+!TTS;vLn&\f5׭z׬Υ֥*x0[4!\nIuokP[ n>_'qH3j#>q۹k]2MK$N]u:udx" P*BU1\ˮUZ뭱\FZp%--Rg8E\Sʬo'S0%BRGd@w5CI߲jW*V:CeE' j{ls jӖ\ReJ'P1q #+G^]Ū 0aŭENm '@렱i*_GT디khi7b7 Ґ$) JTO3pH4{ypbܸ#- -0:y]:y4?] uU[RDF%;N8v;)D(#4a֭3uu.-̖5̀AR@rQx(UatJQʨ5O[;u!hJH ogk]MsBjDyF)9[W%IH WTЕ[=7귽LT%UqiD`k!A P*箁Mqs.ι`V`/[WD۝`t/U߹<_n ] *3&dZ JF1%4Su:Uh4UB Qp2Q_s=%>Muզr4y&̘x/|%+*8B@=vsrbf!ON@KrʛTA@j ^~ R\銆@>cK))SXIXƂ+-:zSi]V̐%KqO\is3Jz5ą(6gl!G=IW]UkHZuPr)T*.EjL%2T+$Cc@x-ˎ3R-0:y!]:y4͍uG\ʸ-#GR& r<$!(H!XoZ3gh5\3) :dF#d8)crGDsyQ㵽/,Ukiu5=ԼKKVԍ Iʉs˒' 0MmN<곹Ml ^T7$2ַ#u:ƞ j5f+uJPݑAoTԽ*&:T'Y16:TA ;9ϩY^FEW\[涗  JB@# Vxo6uWk VҪlO)<IJHh-f-v+* [8 i Q.Q A%[T\R ȭ_|Z6KGIWG?-Cu:z2`$Bnx#Q1sU;v4UP53%Hj7v=ƽ>G6u\>)6-Jf h.=?QaLpv=W;ׯR'fZ2[;mq*gyTn.[8!=6@9_/JVOBcq=rK.TS]3KSi#&b@җ@p;Qk}Fd`Imx.B2z eMOX 2H Ch P((~6W[h2K/ +[!A-)Qe;pA\_-'(T P!Tw*-zTZn̶sծDVb%IJy5-4UQ BrH )Z:iL=@fE0ӸqYǜzlpFA^ )3dB\.Ta-Đ qYH9%F*#2۱lKH)ZHzA/Sl+N"n_>6.i)(EA NI:vB *%BZ)ѐpuHN6H d %6fE%n `j9BIPl$+Ӝ *lTݗKJni%lRScjSӐp:hᝡ&6J:|vX(~b; W._%}G5Tj&2봍 YIR%) ` t(\4I:%98Ɲ"2f t y--)tN4 q)X31bl4- %  ,jao?%2$N6pӋrOA]YpɃ.-]m\NIGq`z7g ٮGT!I`&3$IJ WwQ'A-S-_{\NqNaU!A.-/ ECg ֪ʨݗE-D*II_vd'\v%v,P!MӔ' Jmwx*R \e4R:u9 6 lRJJwmMA2gHh= XKRZtӷM;I3Kᛚ\Y)F݅qt}too5_Z*,E[۳zN=znL?Om==/˪Zm=Z'hNF'GCAgA: -A?_ftlàF:>A3g?{n@Ad{t_gL~M }Fg΃^=z۠~_AMjعȯ'A80ÕK¯@z/' Z?Ȩ@RЀ+p#٪bzNXXl FTmAABj1p8n|u*&ZByq8eC>q8`t:ԋӈ7'+%ԩ3cP'T)<6CRrNdԂ2N?(LeRt]D8v_+VFw-L:m2S+2|qdyNBJ%!HJU$;J ]T&M0Ӳw% 5J;$ttJ,y)FTRRi-)B 4>*vYp]("",éXqM#{JP]VfpvOPShvx%m 4EG= ЬI@=rqr\8nT*(5W!0$ ژu)l4N =eqRq|20]:?RN!Ha)%nœ5v3eP]3m5X~ÿC7i V NR+soRZn3me`+9yA998\VmV*@HΡZmC”Athk;=WEG;a)T)]Jp{Eϸ&7qrwˑ)(MDu%K)F7%JϜp0'7Mr.[p'r)U+IR?+k 8QϚF{=" J] q2laqLhX-rPmYRV n"q ZeT~W)lt4Bo:COX-!%ԩqdIJpV`($'Skv=:׭V+US$5*Uכ}ӡi@IZAےI mKU*eNVjAR)B1)B)JGz[`-huuO~n{k@׫uiErڒʛp4? WńQ45Bơ`9K ,-@JPr6.ޛ QUrO1qۡVݹ86{R".2Nf TE/EARTbSnzm!B*;~ ]ƞ \(ʆw'fß,n7ԫ5ʊܚE)ChB)'':/=úV} ƺEj)ĬEh9 R9I⅗KQR&GPs\u IP?|^[ڵ ɑ\jrك8cLC99dͺ}EbnS$T:HTFn@$ :z-$cMڿ i2՚2_ Z=1ԵBYme= ('מ_t.֭ 2*@6aS2؉L#*V*'^ w]3jti}(ii([%!*IQo? |]QYa[)*2R)[J BR8_o -[EUX^SK$k`jN :8CHi' BR0 c@ƧB,ޝP™QeqZSf4RR bg# '&a$I\! 1u>n!ԍ.%+RRJ==to5P?>բ7  E+)CIP Jsx~~ZYMN{ʨp=-P8BԔg#qt=tɍkAprPt3 BTG- y0r:KcvetlQU]3"3I "Sz]eҚb#H ,) !6\h+6*-WM=ʂie(46oeYJ@.:4뒣nF VnJօ%dI*-'e9]C*;"Cb;hio:tCm WBptl#YڭQKY@p1XV8]w /\xapW<.OM6B s#rh'p֥i>\JMS\mÊTմ8>~%>h$: A2=Z(^|yKs7ovf4Er [r|5`G#veId,]ݫkuA݌xuНq(e*QBGR`zH{/k^Lvj a -Dm* H$ (t۵=K&H]!򑓱HI@2⅗vRjQҳ=ǩRR3݌`p.vB4ɨ+[Eiڰ;zG^#AxŘi:݇%k4_Է(Q[k VPzP-.1Q,䧾)r#2ɎA-FᏄtidBKĸ}QDY%,s9Sa-('’FA ;z ]?bFnL&$IJ"IxrڐpqeSLt bČF *T~r+{}hiOeu*c5פmo75IS;Uh|1d{N %i2 #9=tu;}%4潇VRt [Nߢ|2ګr.\Z2ZBTNp00:tz cvK6ݿnKsɖA)Ku^CjR{y%=qS--:YbNW(B2ݪK%. g@P)/]t@DX-z&+ԪQK=!N!/pVMI  m*pɈTH}K q` ~>O ءXȥCv-z?J -,["U4 uhSa d8vO\<=dK;OYv錘XKe AHJܐ\8:JT-bƎwm;pI>«޽gޔ"YTy3%nsJVOR:dv8Z*}U"0*fjl\C@JR?>SYb갪p.5& FMN/J a8ڞ ECnvDw]z9(8= 3FqbP:+E>&M]rψvJvweS X"JM!4xVD4 Vq:h*VxYbW#;VG=ćgZTm:@]J^M$0sRNwuFFqAէBړoHPK:;Sh*V%iU+~ˮJ2.%Gw+Q N7 ? ,:EN<Ͼꔵ<0AQIONHAc\4oBENr! ymԄXA9)=ANLŧC}Fe*;P+%]2I'tP{&/s^o7|>}ƂZReҝ6錘V-[$s+.Nai qO)|i A=AQ}ö*vu)yOS9D߰ Go6oـ`7$! oRCe]wcw8頨[ sC/˥d%!6:;Tm'99 h [( i#4fFm 2A'I'۠VL2$]p8 $ंrz7ӸQmM)66Us,|Vmb%$ ی0lo bB盻? ۦIbKK&C&0BTT$I Hd2 9,["LWU@S*(-H-pngv"mM:JAQ@0UUBAR\AK}  2Ubclc=Lr6%!* ;qI^W?d?:A>\֢ѩDtY$zT@@7+kEc2{}4LiH@RBQ枃!C7|w2>|6nb-iRMUDXWԌ̼NGބֹ p45&yO; y :'jQJR1Ԩzu.M/6մOJ-%]RF@UJjc<P(+uWP&dРOn6>'JI=`gAj5>D\m L?s @s7 nWS[(55/r -%F`t vm <wV.6c& *D67#ո(a9'@bޔknCu[2C̩(IRTKl9EUBULc8ҟp 8JA#9rM=ҝ2ݑOj|KN!5!/ԺBRAcKnrUZ{ Vw<>1ddnunZN%LuJ鑞X%QxCZ T?)6ۭ8W3 rm/ii7]F52!R76jKrž*NS*i54M1Kh 7c;N;HK$gG G~-m(4ޚ!J!1GONz5915 $^ċJ΍>M@~QCӖ%C٥usVdCR1>ÎyN:vLxT }C@BOx͉e;[qʛi)Rkp d$3'H){ʩl[!Kh3f%6^zwz^%Tj1尼:}Dd؂@XLf yЁvzm"ZWbMTj>úE * 9p\iĸ F3gL;DQE%4QjT #+Dw;dF{Qɩ=˫v͏r ]JKc; z QO ⭔٦EBXIJ-RRG8=N nWiJ`Z[M3n6[[Aؒ$ @+oXW rB NLSfSےyڍg 삠&8cRּ%)I''[/IUF-=4Ͼ i5'!@OAjċ~d˼Tm:)9N2q@|&&̈Kڂ(e*ws _^gIP?4 TU>wLtGR_zQ?#vLv]*q#IG|C*Ho^Ufc!-oj -1⚔[;T$z SӧU%@aqeZʭĻAj.pBaw4Vʊ<_RԹ- ~JZ4WP#OrZS\ₒ/hƃJq2cC-Ӊ)ZB^G 8g[Q*2mǷͥȘ.!a,nJB'#AԸqHkʔsސvCS@ Qz@#tzù4;kU@K!ᕎ[Z\$mVЮ#@*Nm* GQ8UnPI!;oJ% $8VIQ#׷ŨyӬ}Ur֕&%ILm(]P_@tzxǯM8*lYʉûriJT9櫊j"AP[12Bƴ6)˶$u&T}h"Kny PqCӠ,͹lMO#]Z{Դ>wNTN2manLfn.6D ̅V8zCd)KFgIi7ӡL| \vZmi=JR+O@hDۺyˇptݰW XRpxNGC4 g^odfuzy&JOKBvR{-|f"љd{r|6XTbSyw e$o p~WtV-b'wmVnKrP VRؔHS+Z񴧢k=;E Хq:MnW̊ta$E.g1ľ$np#'+{n˻s!ɗNf|8U6~#Tۏ;@R04cUN!\>UbSFIsž2Z1e.6 N4n\U+zKӪAҤHmiCm6$,)u8Ppiѡ,NjXeƹ.[M))YRCjq)PrHu*vШODK pbMJ9T./<%׼})m}ǩڐU#Kۏ5FBJ8R;pJrHtBJo2jHqcaghz ]~RAR7H`5;'Yrr;j#@eKT괸 ^z%jBH/Ii>LL|mZ_Q)."zH6O}|ո''\*q"7ޟYp6`)$얄8㍓qj_, Z11>g7"oS?+5zyr<=z9>,1΂rgA 9ר=ztErתT-3=2q$_s-FcGzl-Eyl)E Si ?@s> ruҵZOz <PohNu\뚞6mXuj4@VP֯WY.?#TR_C|Xi>:"r.rrt rtKrKIJ:EtIXFiLʢ6; w_;jtsFMj4cNOH-Ea,0OѬxO\ΑY: : z^ cA} yGAt$kh-)UVI\x9)n#04Sz ʧ~fHKMV)]1/ʧ~hբ"{&SvۅU}&eS_5Wh'mCA~h{>~ڰh7N1)< :iJN{p窞 MFtfe3qXˍ) iSBp@8@4]=/!t~/AӞKbt;}B~ܞE/'%@!Yڼcdk4czZr2VIBXaBt/q۞i]Qݨ?;yЕyEe[R5 :ȈWy/ e\KEj +>JҚciMQGy1mMhڼX%Ƃc,{=@O OT~Q^Lw^}Sw?Um)&R˼~\6 yIR<~PA. ql#/㄄4ԠRNs/Bz.)my}=o#鐿mGff}X[7Wm>7]AEyBRW 㚘=ū2utkU[imܚdx3R59RB%puk߰;W*ǮU\H7d.4Q8$e)(9&[VEË,.Qnvv\u6p6>$yP ~o?S~UzfZsP\p~EɶykC$E%+GiШ jeJ_}nϥJ`Jl5h&|}ͤIRN w^*F ok4q*kI'4엩ߠ2 1ҟ nK冝!i;Nq;I_o7dI4lHoaƒ!nI*7*k%|?) >:MNVVuuLfS nC_kϏJB@V:;\/1?+nt]/p!?1a҂ʺHHyOu~Y_`Dk;zi%%9FNJJO` i)$"""oQTq O P7Xjc.-Đ!-͐  ⪚'Ak+'.E#q(U΄G$Du-x$]qw&Ϟe٠z5|K{H=Jvwt﹐[yC@~$m<=+Rӄ6prw̻kU#Ȋ7"=TJq.ґbcClbɑNIjCoS̕2}9CRs!? 4WÖfq P,mNƟ:\7rJa$67A\5|˥y-M3)_Ld4es )M xlNlDn ό\8ck K*U\۳E1puBAiHK@%M=7VCWAT!A5: J LE:*dT(@JbM:RW"9 0ӫ5\Xn]%ķXjBݔQmo69B@j]8y^ -;iznݜ\ۇ.J]/2%dR=>%\2ij4óڊIB)*aЕbB7)n niN:6-xƟlE8g /rlSsݫlvG^6{Om\D{3$&3I<(L(fݧd0utV \㖉%#9;3SżjmYD9p-R YiETd'9S?NMFҞߵoe[v*N`s^Ej RHO7 ^KW:3(qִgpWJld $eG>_:J~~_]rҮjl{ 7\wmuL%(9=MdzZ5&-Z n)L[mMAAaBT3l d,.'jèQ""tW Jr6&csq$c-(` UuZQ[mo+Dќ ,ImZvnܸ32)Iu  YB3x`ZbΗ m-+S% qA!a3場nКv sCʀQq$rc͒oV?L֥Jm֒ަM8&QMѵE%\IKLLF!+RTG6G~QZpr)tcP¹@rh%)ԥa\@+O}9֗mD4fP7 k!WE*i a;ߊw8kzҭԖ^[jS>S1 $lWm.jBdSԯyv«;T <%IRߊU )W9&B'(JOpmyO-=RQ.f $6|du*Ml cE4mTKf%:(fTFq*zPb-sg(n:y';@ z>BtFq +IzF|.OwAR@:&L2;@%ZP,74`G-m`a9Q֫8P* M-Է±wb__,vԉMnU '8iťIRuZk|jm*\駗rnJR|$t.Z$6;cAT7. I.o|ȊN~BV縚uXNݼȕ$UPpW)):~@u i(zIyLݮhf=!l9f5*CN) {Bn`=XҒml8DkytàPW}5vymG}/,2;2Ip3+#8=w[aBoUS̫Ӓ4Ke?IMbg(KRJ3Tʜ''8FBTi\,Q퍱:j=p뚼^c[.gKc|ryNqGۃ(P"*縉P"dž&*̆n:+HPXPP%fYV tT7;!W; tJШrqM]]ݲ@DI3bPO:R H ;_WwJҭ%%9"'!}uQaҴa$$$(L\c/2 mgO1I#6'T%HPg .!>GSsH7 Q)>WdɹlR4s*mGLP%..7;{n]Xe 2m( 2ꏊmMsͶqҬEé1l})ZWᅨn}kZ9iב%첀zfpOsdM(V_td =syJVvG;Pt㍭G͊>4-*"vr'X}5Pv뾏(bVMvа\BqҔ INH* n,[h!HQHMB7.|1j~I]ZLCcuX Zr:jW8ZU^ȓ5sXqNFLĺ %/,s<ČձSK_!>~F\W,;vhCRf!CN %Yٲ3鄩M2NwO*Q}^KI=UhW[C)u̳vPaBm3aÐYu@` ]D*(4'ORoB2zVjV_<3WlL_;KQ$Hk|i͆;}X[fP9R B@I U|GuP)o.Y6<J3jޓ+-戳#!R>ߋ@" ޅH>sOC"/29+s>p*Gހհ51A;!!*¦㾃v9I4dS&Yl} 1_n(]Kx_FAIG#ڧ@s<d ,lܭOC9m 7e3PIec.ګ4>ekJ$y^OUu@!9`s%Träio=M-jJ@ܒJvG{[?mTΞ\ȍJp= ]iprJnXbTT ~4l؍K`#n *JzBw%Ϣ. SKSPPJp'bu~8ӼDz{Kvj$ 3yczԿ>ɪ" IBq9~ɾPi<54-lMj(g? ~m#Loɛ|tΕ?}Z54j+EJSN_$]i>%@"S)-0fO(eG HGTcJLXW3j5*??}Zȓ-T#öl&/٠vJV I 49GBrAniHZ٨S82⊎)7jAG%CfɆKH[%I HPSFzYGx}:4K[[ME\%I=+ PtC..xjܼN풔*D+=Ǭ--ۥc 2dy[X-a\`G!4ʔ E%Jf0p^/(==OwE@;?.Li.im:~H;PϜ@}&F5d^ծpLCLXokԃK27ZTbL(YնMeaGP@dݑapǒ~s]FO 8MPp@nV$R2+>`(Š"J7& :C8bQPך\)X†hsA>.k_vx:֐'܉'4&Υ&u%J5t?ZѤT8J%JB}>;C'jَ1*ZrEŨgp{v;HFo[,4C%)HQ0ۇk1ua9B>ZPq5̳<-l5j ?gn_m,[l/Jfv[v.?Ξ`8å8s-S9FkŗfsJPg-|bE $RL9f0*њ 曺ٮ߹͟g('Jq\'R9`Rp C Mrj8BGhuZU5W׆v9F.W4HirZhr:ry= .K9tLq)NdI$_(nc< ]ԪZh RDu?o# B)'ORۥd)e@iLz EZ%b<$d!ԩXnguD>1^RO ,e+kIG5^fTvCr$\iI'>./%Y#o W?v_Q^?fa)VpS2:#M%N tVmWkkf\MjP))B*ZJ8 Pt (Šڵ}%4W#Ri(QJS@[SnR)Ŧ|jqjJI1f*~aڹR*޺E1J~tui5?ZzQ\R5=cL ͧi1?Z)REWθi1?Z:ߘ@1YwfZSCbC/wЊk+Z|gO֯/3PB3OǡQ+A~hӫo/W'W[?SN# n?VcG[m5?ZVD@/:'Ni 6rMuU%|kjwJ/I6v3KO?7OT[&WO:~'@A n c H>rթm'QQdh'MYqN;f+rGI$å_p?FOEd|kj?#m{ѓQ>fGU?G\tŗ:=´ś?7O*\* P Θ#\7cxt{(^b|[ޡx~{hUlTfgJjK z(v~{j5]"tjѕ=iy8 ;qP7bO:;?@lyricue-4.0.12/help/C/figures/docs-main-trans.jpg0000664000000000000000000010523013053456656016437 0ustar JFIFHH$'ExifMM*,#JFIFC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?(jkco ycVyl/sZEo@>.֛<+3Je'hC %?wxUQ4f70$ ڸ|E`]xSV}T$OrIƋ X+c\S"7{dڙlgQ @:A4#2n22 9 ^k~X vֲ[^/`tT)KMf}"#ϸΥUsaCs؟J@uh`4XAkaoIy[lY1|%e5<32mdj̖6v{3Fdf Ó ƥ6&(FՀ; tie,>S]EQIi r38vlSѵ=[g^@$Ҁ)n;a/ FVσe&AecOyKq^jrG5E,[ ,G$~o::3eGO1a *?S$+OV,_\~ M2m'_0נr_ J/$p1HRH 'd@IbqV'T'mżءYqlg"h6fZ(JǥG+ #rs,gk-F 5O[,&E#}m͸g'Ԭ% JtI<| 'hGmoow ֗1#6 HOO42|kwR)`_Zٴ7 ī* ·ž#Պ>\!0`x' _ >7TTK2 ZHI1'$`5/_ '֍ր ދ?G'_ FMSN%a#ٺ>'_ \Z>nQVe]dPI/_ M.}htdz|Gf{>'?Sn>٠ c~g*{{A[Xۉ8?&UVYw{(?L@\5w$g&lN Qs(( j~۽p+g^M^mZ4ME]A>k_ub=:G $*Tk{^ jmJKp@# kO[\65ʂ윆*If*Z ca u„o/ j_eԣ]VIdY|I.~^HOrQ,!Oc#POUmG\E|.iX,oqC~DD񞌥O\ǃk}hPMú#@cFi&I-`C:c ֪e FAO$2\nm 61E%| vrOq9=њnhh'fi1@ ri&h6I3P>(4fiU U§zk@ |8_(/NͼPCI R̓qONŞqt96QO, Ͳͨ˦ǎF+ј1Gq$~ہ ̸uuy۷v"Kyx䈲M}!OQD~Ku[vųڮ\Qܷ?ZWKCϟu)vl`1CKOw2]˃a2ůDuq+CmrB܎qQN+ryP`4ޜu !ۗs'#G(}wZCKTm$+H#@X,ǠCT4Ǩ "&Rdϔprc@<45{1mpҢExk+) Eg-.`2.UE̬K7RIE+X :̟ɶk#Bqc5c{g*)9B봰p{ڰ!Ndpp88}kv-:;H 1 v,Tv=A@KL.hRK@Flnh٥74 R99A EugҟOhMnM`\Av.wY5O]'tMFj ˎqss"-Ŵ)pU㌏lm9̧t@@KhmsqvRxP,$)$g9Kt}-$Sj Pq .+;xeXcϹ.$IgF#yK 8Ҁ2tp4{Kh*6A|GPN xn{m&N9i6Τ `ٷYZ1ǐLj|}*4nP=q|UqntY5"Y!$eݒ2OP8 nWux˧אEp%5cq'8뎂m?L[uQo$:)N 'FN'Pr0})U:?还 OPT_hz(X@UiqQ8])Zx?@c4:/Ф2F<%_΁*}:MFO/SP>ր$U;?:v(| Iir ?hEs֍pտAay{$$-O\ K€3|IwscFͶAH ,dS11=k\Hk;Pm)HHg絭zFץ$v;YɵZE,3԰8#^.O,VpDI[t%vVT YUoTu ųsP!'ou=.O_I;H<8+ {HmΏ))$L1+" )D)E JuAdU t@/9v>'';Op}Ucs\pRǹH (ʔGP=C8/Imw_XuV?1b PXssfḍD~dh{mz5*ʅ$u=U\SLFk)&վQ+ۻknR5 K&cGT>v^Db_6Ր#=)췀mZ2̖As.Z:esP2F'I=Gl r"վ+G0=Pn% 9Z͵SIf0*Tc@;#֊I8԰-#m$pI8=R#pO5 [l@Rܠ_nUy\zqRyfGƱݭIer0#`<t]Gް5/]"R3|vRnaCU GuY\nhS#^_j)WM*2:u)BwkZ_,n5%M\y5͘.@Ƴ+t63/kSwg4\:.EL}뜂uYj_Ym_VI}7B阨?jȤm #\ڀ/\ɵ< ֬7HO_ΰoԑY=i^Zd3/K_ΪKt/T 5Jk\ݹJ@iw*ޭ-!1l0&iF=In,2wkʼgksM4(Fi]~!FY>\\XHԒWBYHJX_*cFe£=GcZ:s%dmiIh ȭEL}뒳+xxU)  i^omvƤH?uqpWe`qt4-KcmjN $LK€7ԴVf(. /ȫK9~$aXKY-nuhIM{:ʴ7vsR+aӵ=. `ywl֫j[XͪB?A8XEv{ zv銿#ҫ1##ӥ)J j<4NubQ7]2:xBg5 ^;YG#HQ'Wxuj:mpᑚuRF:~p5.R}o`HP<1.Cphą70sp+3–7'2 qoGU r{K'mG?A7[q}<:&>=[̍6%szӯZiDbc8OZۆ+O@Fά/U+,\ Tvp:췠/?`w~n*m#$:*FD{#B"j\CB'qR}ss%o!udcW;,"\2hڗjQ6Bɜ"Aq MNjSpp\FԿVQl*SjW__0_gOVά]P Ԅa38Bb5څzK??P-Ϭb X˻Nqn,Z.VQlJ|t#Z0_d?ڮ?0P>j튏+` })o:ʷk v-l'sqאN}z>#WP?Pn^^ZԵkh4, OQzʍ79l)Su&.<^dzr!%UZ}6 s2M;xک:hĦ%cүwMdc,M%Q#LNШm.hk{orG>r]>5u }Ux:+Y/rtushڗjVv"ٝK GulgYtuB9Mα JOEiG@v*e(ĩ,SAW oU?=oEfH,1FQL2DyfO[Ƞ x lX2(C#M3}HB3b!TF6RG2 oܕʳ|>\*凋tۄy]>xẋ| գcmVm tb8Z藷4ۼRA!IfxJW\$D08*H H’yi,K&`@8қ T~+s^ z/٢K_\Y s;?\UUǦ+\iZkO"4_nhvt$IVTn%FG,t ; ռ,I$$ v:nտg];X| 888R5kCkq$&?0B2#$~>V,1K,s<)!]YN>?_ZCE` "b$"eBG|zc pncr$þy涎*754B}$2,4 M2m8p$۷NsheON|#lUؠ+2N~lJR*"9iqHhcF_&0˯ѿ@sE;gmB5hOhXL#aIϹCX0?=BuӴNKKqbEa1OV;'`|-8#?{'@xgR$Kh-I>\kg$P@z*7VYB ED ߷v ݺ .TSxgϿZ֎W1 d 4-rmF+϶DMotИڸV\\08^_f`BZ12ٖ !$Knً ;IL`0EN?w@ ٌvʰY 1<'ڏ5+R[hK4PO8dZo/SM} nO %f63TN9jwͦKc$V4," ]0 ]N:pJT2qr?ݷbmĥ1v1ǧjK9G1ƩݷO5>-KW| P9L⍴jRPt>u7jB)ѿ@bv( 7 yS},hShQd 4򖈱2Kg *:,{},@|NߒJv{%~jg'W"У}$@|P}ƾWP~~I+P~I+P+)I_l?%~jv\ٻf޵g9P<-MVK%~jx_~I+PwI_R׸JM{~$@!vEI.<Ą!#O@L+WZHnSi|I'?wߒJ~I+P!V,ߒJڛ)/CDV-ٗ[K10ËXVrp@$ WIE WI m''MΉgz/O_[O'֖p?(:O?Q4}i8~O>$feEnlB_W.#+{jG# 9--7%ⲕ:g'5qAP[]&[najygYP3޾:h"kk\+mO8;$q8J7toۥ_婧]#:)8QN$tvuZ=[E^a!AGB8xtj;-\1&sAIŠFFm~:ep"Pd6%*Pq)@sNFh Y;IY4uMZcI':(Qou ϜPHsYu,Qn\,7,WODZR)HWr'ΓcT?]@E4U~1pneRy'pxj[Cʸ2u]*op(@EM?#]fjyLrpEt;-Rr ' VΕ>[Cva?9vQRPd!jFT8y;xc2hAdɱe9ζౌ)޴ +x 5Wi͊{s!OSRI JTA*|| ]i1uk7bUߖlt0P+V6oX ^u]hy%zL#:iԤׂIPPM} u%6RpjVk`v׺Γ,_RI*]$[JK{* W$Bfjqӗ+;a;`pud |I >5#E L.:$ RBmR#?RV,%uj<#F[Bqa [*$ 1ƃ,]mҷ,`״)gt}Gst`WGx)RBB;G#tkK4ew=hlLU8ք'TTp ʂ^tbZR=Ve+6_ vo3i;ֶ$ mJAlF8(=?iKmLh0;&BZj!6<'.6 A'QiޒlE $$ź@̫ SUE rk eB'rגFxM +_y6ke7=-rJzũ44$[}#ϸʝgiU륥/_<']%EnqԒʱMOwҽ*^]LunM 1p-*S#sA{-O>5&O~d)`se\UT-!.;=GrcKvr2le*V)^H%!&H긳nb*}r-.T IH+< S k:W{Ln0UZƺ6%ɓ ^Sa([$cw34H+YUwziKƏ TTV lI*̫z̕rTn¶GJ$=!hG,% -D-Iz2 +i@M.irP.~*mH8ÉMP]h?AaA.jG0I>c* lA1@@w[B9`PeuỷR@I$q4m ̷Ic%-ڔn_ ?^P5O"90&Z<gPggesY#BJU.uD1ԭn.]kOGi% ,rW~!g{u@|B׻O;^]~6;^]~6;&غPwbPwbPwbPwbP5chiy[^Y gu~|;׺lwTM{tbPc7xu1tHt3v<_"o݋xv.xv.wT-u$mlq<&L:$| ħ<&49&chh_b~΁%P$@y; 1%3ԩ#;JrTZ^l xJG֎ '[N-&EZp. q^'?z4nMisTHz/XD+/ r9AҥoJzZ%j%&#m$6֬TTN Q֖+w!Դ"8y*C'.%+w!>VFv;d[&Dvd>$rl R@{?Z=uTWAav@w=uAϞy^4WAh8,v@BҪ@wh;u$F;o4 RՊ .G; 67~mLrDYgRwӀڒ } 8An5<{w[af[֭qmF[+ÛֽcZTTH8p OFZUV%jGĖe RAcA4MgA t4 I@4A@s@sA٠H$hh:-jGkߚ =(gQt% n Y)Dvm WAltZ^q}nx>u^)WM얦$Wڸ"JiVz{@?]I5]ctz%YuaJw8v63xhh s'ny[snhvh:惨:df惁Ry<( d @s@sAh::34ԃx]4}6Ȗ!RgZ ܅dr$1Arz c,nE}vx>qw]c=iӦ46!$)Mxm .n/7n!.BQ(SJT݅C=AOEbDKO^9_u BӝХe8 t)"xU(`˸8KJiLmY(KE+9J@DzFkjsv|a0xcނݵ%&Kd(қ;<q8V^욦W \FQʐT F{Eص dO\m/>̉Zg`}(*$$( (_n;7E*5r P0,uXYIϤPo4A:4 OP:(@P G9Hag-* "(rs?Y~hGPf4QBWJ*h/@s@A9@G:$EnT\zqJ'>[R 999b.gp( f,Ji8>xP9想A٠>jB ^ѓ@ҔIwP ϦqydP89h9:AN{$ =] =vDrg y'MZANi۵kӳ Ȑ69)m) A ;Yh|$TpO9m:2,Lq7 SO;r;Q}Eуo6.,ZnMFMІ,T[ s(؎'(=$1to:SXHӷSo]U:ٸadm?C8DHW:&xKכ׃&mCi+t6Iچp㊲w QG3R㯮"-RfFD#@HkQ$mFR3s9`VY:5,ŹKx-Ԅ%¢A'LtR֚R5m"<Rjc/)N%3M.sP< @AP4:X g44Mf怃@hc4@E;ARTijо+4-dIÊ}p RB菮ZJ2g`CKqe{Avh489T Af@(PuP( M# 4 WP#fϢT@U (X@Evh* ş%|1 NMӏS,qA)` T۵A%vcۿz(rg.ÉZySn$I8c"٪_߄֛j JB5#RX@o*.#A命ua]S-6m3 Τrgh8# gwWTxOSl}a+sAS7HvΰXv]e&KQ\--a!LW023A_Hbnz3Eikr/S)Km9ZH NuS:J|f㮲YZҰNէZ IXPbFgfxXόulI x|(<-MҞ2U {2@V?JZkjEB[umJB7udm '$`Ɓ6J#PuL÷e!@zӴ49=xPUtPZq0o Kzd t@mQYY #P=((P@h.vP6T#N|@h#Q:X8X>R3A3vK.<ղJ[,@7ij;|oH^=^ qrW)}IJmH @B !T+@{h ( Pxf@hPE@E}4 mt @e'rA%#P,rUPq<3A>V}4sA~?P['nòב4vZ"h,$ o؏Gا⠥חivB %* `YH8횏NͰ3z{1Ÿi iBOV8C_Tf!>PЅ%Ch2(jhfN4%S(yj A;r3A6Ѭ s[4܁OZW(ZPW]s}pAb^,È6N3'(FҊڼtIL-.{]a)8AU5mmW޽MfuHi pt![28( 9$Mtͦz;RR@v 'CYh^fW숸BmNʎ-\pddYLbJ&L39-86Ns*_Jp>F5)#'uYP[ `yCG <_)pA̶<*(Fk~]DvQ*RPHn$Px~u"|< {#7Xqs1A.sIX(=B"S"mۣ!iXi;gsf:Esk;Xnlř{V惯.Vڶ7 ihgVږפM4l'#"AJڍz;eVZ P\HVV6S98c}R u#KjgrR2#Y޷NWJVPn/,z=M]-Zw%ZD^J!!-Îɠ QDӶehv(夰Fsܜg&&F]56NշVZħO)Ќy9d gEfp<ˑ7Nf`H)qJRU֏E@h@ˋ+PL@%c)d4Yc\ZXțW jڤBX$ GRP*J vӷK!nEx&U,*ⷃm̑+ D:ZykƨѦ\22 4-PIۅ7~܏/͊"Ën8QXe$s1/7t5W,~44>̯`$n# A54Ase[ Sc)XO'47GX:EG.&!L<DR> 6WESiI>n2|NX,be89˛q[TptK22Pb:i+*X[*w8sPSiFt暑p(mF,-Ո>027%JAMz0^$/.:ft5.{AnwIIAu僓եMqM#W|IkQ^$\$;מ)Ja[h=~3@*±hqkA`h0sA r9P%t !T V(P((g6}թ)-%'%itqfG)ń~: 6-<>SۼgB ,4yř9=4ړ=g+K'L$OyA!~9=m3zjl=$Ör;)ݪإIR#+9&v+$;ͦ5Oi/(He+Sٌ4tgGirc=!:nC $\ܪo߷b'PݪZ#rOHˎZK]$qϓ~{[rvq6Ӊ`'m_{òdL"J}H\C@ܤyNާ9L(2ܭZ$}q(,[p1OyA$h0F|Y'>tړ}g+a,Oy@$ }c*A󀵩'"D ZVrc:0uAhP6 IiQ* ${p8z)O1rQ$fz"x7L~‚-8r4 HMd悏P{{Q$_d`GǛuԑmV mi)P=UY":M(= N:zN]3\=a`Uۮ;y1'1ftͪSgrVՠ]3NsLsS-i;Py-S%vܝʣRi(3-U\ƣ= R'\juVH:Ww4sT8N4j2I/ܙ[[-mym):m@J%iI ۊ Tm9v7pH4z3-1p_a6x,$65$ \ٵ(B|mIbG(}KOc^4(y3dR_ɔz,5AqnG }ujBRƁlYk-b6C뭸%G8m}CfO9r}ufDFZU_j.SV[r% _ c!;RT8KmZuIrg,D\_sVVe7v%ʜ\GZmD)9Gղީ9ȯk2Q/ے#|U[E|+BGhӰ߂ܑ/C2H<\yK)|g;+v~e~Ki[V yiӄƘOOyA%Hgw?Hh1vI"̎~׭U޻yQ96bvI.29D9]Y],YI*R]&szRSaT~j΃J֏$=]Wp}%Gτ,A%U$R{GI{FRg%wzUO1꤮?RK,iP[ޒatw^S*إ$8!Y5!?`wźܗ%%uJ% sAh΍*_: +-=/Ev%)q̹-+vQP14 TA`ҋv[E{Q;zd+R{<*ZҮˌ6 y(ٜcIcCpKlg<2IĤt *\x!="CqZS thHWp}Gτ- |PJgE$Y)}&#h]=HiwGL 6_F˼j:u-{6N"RբؒJ%gEQWF^i<"*FtԨOޒauL9J)iRT IvcwE^%%KuJ% g9gGirHZkR3+x:RI]7:ueO=e';=UCiO ͼ IJ{1@ͪ:d CXn;OlJԥn` f~Qǂ@Z_nLI`$WyQ3Q5E>eէ^  }8waE.NʛY6Ψ&O4_dؘ:a W~\YIkP?4C?iMD%r#$q`pZ}I*TwPD(Wv=ٗIU;~bg I#aϜpqǀYotLJ5s_ҧjk>kPYT2Ambs<'o'Dqq1"tHZ{Tr %+[I'']V?)fax>(ێ[>Ǹ'[WPnȠH/⺶3ln$IRZQIn8],P}DYk~-6Mx)WZw[_=~AaG4 iW{;Ga# 3vՍuSje]ˑnSʺGF0H0VYs僌 s\֦W/bٛq3'?G]+iu_F`(?f1}p3zOsW02*-=3}(^Ev6v,޵Uv<Ī'V," M(K'_%'o1+˿.;ҎpAEzs`%T|%;=q鮋TpOom`,Nls{]%?G<}GtoM3:M-Umk[8QnN H)CitI7~toS!ɹ4;$x(>AC>oC|U K7tAM7L6Nsf}S\ꣳˁJ{8_#+Ly?[lWZSRB:=9o+lnBKrοovl *ii;e~ٵ#=vY4SzoFud󭙙ޡ)Oialj&U^yrܩdV4y8+c_t0ԑ>.lh/'Oa/ٞ%&nRҧGVfGh?|,LIz/·s#㿽âzrRtlD⮣կ1BX=oL>5 dmc1* aCz;e$f[!8E&/=ҏD{h}_Nӷ [[҆%u8R9Q@wZ_`M rJAEar"bUݳ(u~X wtӯ\snKm7Nrk_7nGpXV̱ɚ_Z(^O*||߹cP|O w.iCڇ &El6-62@bqQb[үS i3)U#?P5 ޙ曠8#&? MaYDDME:FrԓR8x yֆ^dƦ_/cgO Yz0ﰖhVTd{ܫ8{U`W~-޿OayT;V%/h? CVxEŰQR@/Ҿu$8PBMһh(0 ݏ T wy_?ؠMm3weK[$9DsyTK-Vw&T;56ՔG)^:潪)8K8fߛv74Ɯ JqJVPcǛuqzooNҔqoLDy}J:SWgdgkP`qd1!ܫ1ܒ/Ȏm#rիp((&GZ8ljs:đL}Mu)GmUG( DŽ4u9uEvܵgEj%z_sW6P]Z ~cmArpU٨0ڧ.rJp;(%~'p}n[(Bt}Ib@Jz5NFO5,tmM`PfT@zeϓ&QrT""%Q/S[թ JR YZ64*\_sYj)Dǥ_ث1d0 m<%^nTj.1Ǣ:G鈱S06ݦZR3”Zf6=)#PYNrO}]}ۜПZږSuJJJғ˷Z[Ccԁq"_h.<jCi'kJOPCcP[@GEXͮ!E? TKG2P/MIl\A;װ72qZ[QsjkL8-RxVSSiO*R\#$*qnG }jBRGyQhŮ̶]Y"#RP}l䏽r |ezgsHlULi3 F8$Uܦ ]o;-2\\GZm,D)9:e. m}!ԎISe#ό{8(UJv3> i[V c4I:p1R{ Mh2G}i+;E>J>ԙ9]OD7&њi<}%wB2=e']g4^q6tڠy_,; N[>>($5_3Digc8GYv2~9V6&"QlYǻz&m3/Wy[tzS4{F^`I/R{ʘ&%OzΜ { )n#:sj)iRTHg$'7{<[r__LYmnJBPٌ42pOyNO|h1ZJ)_wogYGwF/R{u/Y,-VyW[C? >Pn@ܤGX}bzAa>GADm?"CqRB th>|>AQ |PIgEis/R{iWySb!1ZJ+oٸ#/GixD)=HBcMʂTÑx[%D@nːƒBelcrRg9:7M+?JL?|: H),-WY ׿z4:WrzDzF\dI̗X\EIJXE{Q;ZRm~9=ljU/9]c1|'sW>ԙI]d˺7MY冷2i~qju1uWw*񽑢ɥL6Μ3D]WWH֛jDv䰭͸( p5iۓȵΔF?kҪR'pǻv*PGtŧ MY.4T ߾(Α44P( mAip|d ?7nLWO%Cun.JږuXwb<EbFէ$+CWf~b==3.EGH9s(? ؠslph8<(+%s4~3%Ph"`OBG_(*5`H=PJo (8P2;O: 悏Rgu,~0?CV)v(y4Bc"f.1,]un}Kdv##r8OVOkyshV7dv傈dp<BzQ1ыnzͫ!I B 8WX]7*ܩ0 ]@<j 鬓u#?W}NB-HhX&@F݆p|9sA2cf.w4̇>Iܰո((%1}%_:ƑK}SqdUKh#jl^@ziC_5Z7TJ<y!*sqNeC%J8[!lۖS OA>>'$}&ŎeJiY}_-׊oK$|l*սvwzn^Mչ)Ib)fIb,?Wn){@zg$(ֹcΦu1Y()Ԁ`<shŮ̶]X"#RJBTs8MmCdAO}j>U3KOp'R5D$W\ ]o;-0\\GZmi<C@jB~!@#jTX%d0RI<[ZV}b hHsmv #B|}IbH2P/5Fղ}U/iM`P;fT1>LG޵PBR| 1Yq/XS[թ)J$yg$j7jŲԶ\X"#Ĥh4 ʗ$}HQi )_u) K Tdٵz;]?%-4 f;t ݟF(䟽Zqn]n-0\\GZCiP!J%iIyz(Ӧ>Zd!q%C2v+bPRlRǿlިq'RQޓ}W~d}Bvo#|U[nJ)4}Dz//jd|%ԃ%V9Pdtn8}\P]J?H he>u4Qn~!L# +'j=Lf3=ܘo~uOuF#'ChQE\/nˏAAe4 8\?"{WI@]rLOF:&?P(2S{熨l"FagH\ojCsC'#ph%3c:=LLPyzɯo3:ԞbdWQs?+O2:4 ڟ:4 }4!X< O%ϳ@ϑ>IA8\H (+tvr (Emc "bFwndgyK 􅪗4EKmmT+Qc栝dy؛ߎiuPw%iP 7M\!I{cMjhU%mi ^q`PYj?֋m{ r#[:sa NTxPn"jTVGWXKPr86+l޵Un 1u nk"wV2q% Mi vKɻ3r&?V]mJ(Rc89!J+OW2BIӧ/>7"{NjˑcS!MJAdʉ&)4҅v6d16נm8 wʎIVݎ:jãZ=ܘd?piK{~7nޠJ< N5ϠggzqKIui[xE ܕ`#9B!alI6^d7nRʒTJyAJ{nŎˆO-m% egyڴIdk9 ) űkuP@)4 ϦHb#E}AV~_@1@@ p 8+?)v"5}}MGml9!7H2䶵N;h:>¶}7H0ۋ<{RN;qƒ`@9r4n4cc[9inhp1ƒ`(hy6@2(Uj AX-០)F(:&< J>zh#܈A&Sׯ(((XA@(P,r^]V)eոI젅y_C phphrܸw5m#;?tn U?{ngl3RHӳ㠸Ұ)wK}A/lHFixmYh@#(@ hJAzg҈A sAW޾WPv(,P E"iM6p >_#&I[Qx%?{"7}t\M (1 ErE ^8?)IJ(8PTXmuar:%+d:O{O֟=k@j`CTGm7v[ST6{d) 1ƃI$j4w$Hu 2 qjڔ$ Iu;>#%۲:Id&D8RӫJ[ZPy\MvwAc7% ش' z ;tέ}LHCe+'JTg֡pxKDg O 5f^b;jJ:Cr JnHA^NK`%/[Xy`k.:NԀ} %{ G UO:y y iYrE|5J_zP_bAؠJk"@ ʃ)$ޟBAeܻA'SFӯiPZ]RAQ8It h{/2%]Pb)ať JN ϐew}Y}ך.xsIa1QYl$)%:(m8RDVM1wfLCK U"SI^NIv4[RYuOJJO\a.l}{6=!w)#x Z+t3j]fRaw<TRO VŠbȓtɩ7Y-r!Si"4[i@/nF3Ƃ#I.z Ə.&ZbMsc!%y#AD.~KJR~rHZ-zu4t{JUJZHj#,p6QWEV=iiF%KuqU;dx!y\ 'R9&ЁU?Uod)ܑ%^C}QHGNN("iO{ꎋ%__fU5,Yh`JFh)&ԗ-7޸:8[-v5J R܎r-R12NoݼE#^J{S^RnH0Re^7yc%<H&?&湒(+?AlmT "& hA@T6,Q󢁐8 O޾W(pA(Eb$P)AhbR]6;EğqՂ_@ZH bFD ![SN P#" (Emƻ2(**)BaG2I9Lm]!OLGf+-?# t8yH!}5totXeqAq}4~?EA ٭*v{CRHI)s$`p~(! VbFe! 2alA!8A ]Q1oݸb!nOgmDi7?3e7? xJc ;d'@\6aFlh6sǂROkдFJ 2loC2686\qo ɲYPMD: 9ʐ>J8'o_ HhW>CIOct@}8 ZpF}4 )!9S@jP$}$>aAo JrP:94F<΁1@(yP7d|ࠏAlyricue-4.0.12/help/C/figures/docs-wizard-proj.jpg0000664000000000000000000013541013053456656016641 0ustar JFIFHHC  !"$"$C/" o  !1"AQa2STUV#Reqs34BF $67CEv5Dbdru%&8WXctG:!12AQaq"45BRSrb ?JX-:o7g9(G;!?AJ;!?N}OPER}OSSzTSG^(G;!?AJ;!?N}OPER}OSSzTSG^(G;!?AJ;!?N}OPER}OSSzTSG^(G;!?AJ;!?N}OPER}OSSzTSG^(G;!?AJ;!?N}OPER}OSSzTSG^(G;!?AJ;!?N}OPER}OSSzTSG^(G;!?AJ;!?N}OPER}OSSzTSG^(G;!?AJ;!?N}OPER}OSSzTSG^(G;!?Ag-ݬ7KvHYV;/RTR R R R R R R R R UMꂅĨv;ƱLr-]/]e.8U9`A+}s'$Mom{eP%XHʊG* dp(%x= N⍽WqFun6VJ09$s6JRJRJUg⿬C۾ɹ"cgcӫ߻bLJ0)Zm }Cu7b'mv?IZJnݍq+s@)@)@)@)@)@)@i}~݋}ȝ&ΗiKٻnv88QgNJ:fi;=ٝkM/~z\c|̥*2קia=7Mѷ;5)T/SqQ%k\4Kl6Q%^<_T(((((!kJ o,ZJ4w?T^;%4(((((((((!v6rqy HhsqkngS8YszqMWc-ؑ׆WHl9Y݂sԔךQ Y2H xԣށ&\ǽSᦺZ*m9#K-/o|[yES.NbNX%nCl)J#W%oPl!:FwK7N]EN`(!"iN,Sirqdsu/nhʑdo:#wm|3K2 B]mv') jN֜r5;rw\W[=_qxJ[IW3"z6voN$YcjO(42;XՄ\U+{iT+C[F}AAp:Z>/÷Ǿ>U)=';AI*VNfy'MiWoI9\۲/bAqHii XK@c|%Ѭ8o`w&%HZ}Yq)j57qlOԛ xupz,w!!Z(K,q^`Un4\沵χqv)ڙHS c ǖc^GFB^r}Z`GY]pij5C t8 Qs HF~0X\wO4U+dgtPZd6KW8 'aŠJђH@g"q8ay]pCqiU&^trKN9x(5(PR:y3Ahz8 ,k`ہ]'nJB׎x@`d`=Q&7KEimq/Fl窟QW; % HEO(_dPP|^pVSwK=SD!H8RvBc9+w}ܛgwA˧Ws[3co?a寨ZytE'P9ojWFQc8TGc cOQ^Nd?B&ٌsUbzxg YAJc$j9YOݻuO jWҨ (Wԇ>4* COXR:ċ6~RYiFB[rUÞ0?hBWx <'ةXP`n8ko-Va}C4*Bˌ-KU|y'MiWoI9\۲/bAqHii XK@cR\/;`FL3n7c}:@<857qlR_߈8A}Z̥)Aj~?^? ͚k-Kq#6R[mAAIFw$W/jqq8SÉZDN͐]DhQmH R8}PI(ٴWF.%&jRKn) `5BŠR T׫UWOVvm؊kzKIwѶǐ'vOT3.|Ge<͚6jWD2N`c>q{WX~-ih ^`$hROQQJ#ێwvްڨ8Y5$>=;O:\KR]kGiAwR}Y}Cttn߷|SYsOnٝ n6yw7&?͜g_BR?5u.=އmؽ/g䯏}CcigGGtn'3_P}דwfݷN; t;?u߷LÍ>>5v[đPC8}ž#iTxAY/iR-f":ZJ%(%*AW3"ۭnDxZSϺT_@kީfTG8^~)`zuT̲H$4T Fq ueCsMJ^3* cn2YZOx%ԏY5btm"Odt̖ZT!@e#f+MZy?1׈Iq5MR ; ։(ij=L׊|DD:>F툒}/l$(\tp/ɴ%sNcZKjJ\pİI ZI ʔqՒ|ug4gQ xϗIf,H)yBFT(J@y+ڼgċ> 33*$<[nC By)$<4wYD};9:?wl}__lY.֫孛 oڢi$(pzg4gQʓY-6] Xl%ܢ p:4>zm/ѬFѱW.JuT9i'hBN7L1vI=2\s6NsVG/ BgEˌrdJ)$|e~oT]e;pIEƔ8# gyF:AQןMW`oiŞJ[Fu !IOX'Q: 6SxKK!ʐSϙ%c⠭/?#ͣVkRҺV[cn~jGEI۝:P ZIx ad7CqwtT'{ue$̧ $n*!Azuf}j[, L,3n; -RU `H_i,+'m JR`? RёG.DQZ~F}̠}\ZzNH[JjKBd5Vܤ;x=C'zkNG[Ejc-B5ܔF;[:DhK9mCq(GY'M74^sHi4,c AR NR%4Յ[RgaFӑpukTR!G$`O*ZZ|TMlmCu< XRI yOhϠy&ZmV;[6%(K-7EGjQ$uh>Z&u˄)dgR#l۫)nlT<էc8_ݎjD;TZ-U'y o n@Rv$r8rGp/Kijj2J9-][ʐ(/GiEImsL+ s 5VkJ ;/TSQjh;C}Z~ [tz-d=Y>:լSbHʧ֔Ο\N ;K?GHR>RGZzwzqި]>7ԏy?E_>Aw>ϧ'~ꏥ#{HIGZzw=KTmڥۦ\V˰ћ)r:0#v;SuTMtzz\LF?YªnDQR]=h) VGNo}T Ǻe;{POiP.o}GA=@{SǺeGNo}T Ǻe;{POiP.o}GA=@{SǺeRX&~F[e!((dx z#hju*+kp&1[o}GA9c5+-Hm$  t7uZ>wCx_գ젞Ҡ]=h) V{JwCx_գt7uZ> * V=h('t7uZ>wCx_գ젞Ҡ]=h) V{JwCx_գt7uZ> * V=h('t7uZ>wCx_գ젞Ҡ]=h) V{JwCx_գt7uZ> * V=h('t7uZ>wCx_գ젞Ҡ]=h) V{JwCx_գt7uZ> * V=h(<5M&mCZݔ-RRJi~3Do}gjREuGNo}T Ǻe;{POiP.o}GAf ?}C҄90w+g,x+T_gj7V35w~T\ʉ1^+劖^$yV;UƄe(R'E]B6ҡn6ݻqI8d~噦\5yb'OX|,߶)gN4S['ޝpv-P:#@i @#.lRԞ{TwV Ժ0,\-^TH;օd(/NkJ^ܯ&c<%S]گW+Lq|[`M:ʆyԖ1iտUI;K6S|G}r%myiܣQ3]ޤNʬrnluNfiJyV+UW)uD-uM "OY](UdV jiB$gsAqt+6KuhIR֣:>UqeVn wF;ewq`YBiN815g䛭ckޖkqK(Mس`xv-w~槢")rIf[JePJIw>[(c̊ܨ!Rۭ,) I DU i^5tM_L~z\b9)S9Du^;Li"T!>+Se1%%D,@9 !ˋ19,l(2<"ok>brS.Թ69oSO iJN%V?Z\RdS8,%-Ґ 2fˑ>tH.\$ƌDlO)$6 ]$^-ڂnRط9hj;2]JUkY(9r-q*Jڈ#˗.$ٵ1EV?T [nlqM-+qW>-ĽE;LY\í,]KjRpG|7 g#R:|87!6^vidOeS X8!~ȗ;"K-82\W ZKgMeKT g8pq/rDEܖd9%}$fZPP m*;Af5ΉjH P^nu3쥵w܄#)ڄ$ch>z;NV2:<"+^('Yq'O^%~lbJdGBuV-D%<Iᜩ汸#ʸie },[yx%#ALqa%Rp$>*/QNh(l0kË/aRڔ Wn7xDy֋ _ JPyNoyVz7-5Жi$:ǃuiau Zxt2!d.%ۉ'8# hYH⼉1Zv:`暲㾐sLǕ69KuJVc<(-Du^pʀR5_:ԝ]q'~}*.BJ-5 7`+rBs2OU}A2ThQ&dc0ua O'jQs@{0ꊘ\ %l wz\IKl0qSMZkxK;%dI}Jzhjd674gcQ90<-m6 :Bȓ/DXeqNzǖ-M$M[e:m kV2Mr%hRT @Lu gWnۊYRs,_*}w `ԶRB_J1O0;|tDR CuGI+)mڔcIA2 UA̡O8 *R Z8 uJMjc辳qMr]t)ƙZRܵr+PIQ|X[{`pp2h0-:t&_DhpbLip7dH`]JkG Ihru[$7&dL&gl 8:Giyj+RFT@Qkdhf_rvI72Fw䅨c=DAx۩iK,vAAzXkvޓmK۞x16SI+fj_I{Ε|n6DB;[B@ PDr*5_J.vAݲdƓnqזz4xu!<޾A6t4K11oeIJE!$ ϬԒDeYiձ-I*4XiM?qQdڱiANIm`3N9skY#xqc+EQo=@ɑ*k(^q((el;A5uTi8-0^';Sz-m5 G^躲umzqKPi w:6gbPQ癨UWuu,e&<:^"BR7cw||A])_:鹶\]o*b~^>}>Dp`s+qn-DkqEJZRI$OY5}z-:?&[sC"T {Y[em:RHRHWXbӪ/2k;E{UU[Sc twt†g*u޴Tfte]Tv[S A F|l [)۷A8ox]kȉ2/PX()HڳM\ol0/pd⠭:@=\ WWi@5֭۝D gAJIH2:Kaպ^. yL'8)O>d'[83NC2I퐔3 oYMNuu9HCfp; .<8}98ZCYRH愨4 ^WX5u3<=gE5!)5/ 2 B'biA׆̈Hi\ h6AC˝Qv$̴N"\z$EIQXea)TȀv7V48avUyI@ l6Jwg dJ %]";eievd!)▏j!5|;xѦdEJ(oJ,GVymX}֖r̝(v-VV-΋t$?>8h8[(*A8H#R{CP-Lۇ kvq>ԉ&3mΑ V@W(*64MQ 놞(Jv*\1tsOKMO7jm;=5nwל"6So[2,e!G }J L vq/?gM7]a},!JX@RQ\ iJ >_7Ů4Y<dz*$t >Hx-k.Ɵ^/!(YiKZ| ŭpN@H3g҃!q-eKeZ[ N0?|mNknP!qaKD席e]V?Eҁ_:IsĽ,r/i=-Fl^=)0 n2&/ȌLKu8I)PF*J< \RZ ۻ:&%?v9"jdSdXGKj#'Lq!NCkTאS 8X^otЦ^T220|VwAKgQuȷA[JԴ峼@)'|Rlhgq,<C O$(%#@r\rVTJV7-j JG@'2K83 x2ǏZ.#i+bikg--('NRsIRrYw֋͹fK$!N(.-NZnBHvSJagxI [n [ڝrݍMR 9P5.~F]o_0&3e2ex m q'UjkHHT&ڈGGo)} K %A e8 PYuҚNjGr^%rw9 2Dw;_RA/5Ƒ6>7Ki}jI W$>xzz[m":]t`J66U>4λ{eXZdc*PH8x9+-U]ՎF{e»㟋8 9ay7Y*AiV7\C ̭O<}CgDh Ͷn]mdΝ~dFG !ʂ٪z>B/)"80%iO2hiôZ9ɠQ:*Ǩ#i钅,ٶ銊Ae2 mQNq|\M|kel.a +tJ T?Mho L_7=0I=|CЭ-4]z&ʶ^I8vWV]&4&hqAIw(΂ɨzEvjoS[6r̥JO{u885Q;,Z#"瀞ۥą l+9[.}΂Դ-)vϹu T+y"cIC8%G xzc-oc-eD[++$!TRFqU|6j =4m?v|kk( z;x)HFv9K}τm727zʅ&HLI&l!8H2h,jڵM.ZvR_rLIGn;:yVx`!)-+.{wgOim?ň~қk6 F<$֫zݧUbqO@7 TgCPZ5'i+*B[mQAΉ.J&mjx\'!ĥ$v7}\'ˁr*:6*;Րrq(, `J桷w,co$(m[j s{Ğ{Pq6fJeq*JqaFET ECx5TOh7sKmL{(G*;GʼuW eJQeD.7˘Q#Pd= II#(- +t&FF5eYXyGGMmq 6]ZP)G u|U кI:gVjaCD[T(` -s ]mVї]:˂gS=:>1z$Pe¿Ynv-3KBRģx+EbFk Vs2,72Kڥ'rsZiP{FnOv dtŅ/Cy)JNqI@姴\-ٮ> IqkI~RHZў#PX]K&PI>vY޺Yޠڬstv\^.EhNOUMӚ2$]+lve"KuFI"o-VDe%ĸ%wʲPohǃ{PKO,٨}BDI8V۪o';}4(RLݺ# RR]<@'ݡZmr.[R6hϼBOZ/kč#|4^ۻC -7+);HZ!j. Dj4̎1Dkq#:cDI6ض&_)n8P\ZynZN3.Ym$lbR7<8ꮗ~+hm1S$J!mFBzE @@,lKc}hZ*y OPB saZ"kk#p=č<{jޖ *PIw%}HnkպV}. tbp6[N2(\Oٮ,7ow+J/aN[Yy/XHk(c ) fͩSvňai[EOdqie Nzð %.fy)rD[&:uBu㪷--$|TG:y-K-LØh $eC9*^@ 2 ZͯcYr+EM=u\n 2|vxI$)p<:|coʋS{ivmtWm]"pVn.: 1/rv=Y\.Sk3wjDŽ=38uXwq492 IK}X1o߻v[q4x{W~b=lu [\H;RNT24'GYQ/JKKv#oul>q?{M\Mv\橜ϗ.*z-te[fulRv6ڡʮOS8ŧS^d0jĄ{>W`˅b7N='eWWbө/ 2k3FˈG^iꢞե*/ޞҗ u=i{ؤOYz5SOQ:uWuE.K2W ha:ARڭd9bJ-wo}Zf;%#^ĭx)*spkSq֑ƶ?1s턧">0cpN@ørOj)#LۋE*YVzBz`X<:5⼘e[h/z@ގdg*ƠW RS Qީ\]alֻk)~j:Uj X=XO%]pHn|+ KKhIBPE="rV[,Ub^x|v;$#$HITE.ZʯKY].n("B6\Q蕞e ;H>J "īt4\iTŴ볇w 8ʹMl}HȶT7q:)W%JI@zAQJǹMmȸOhS:PO CI+өԔ q@VΖ7,]q}S]6ܝr7c88~kOqC@O[oaD[qZ9I*{xn#۝ye:Yvy6ʏ֯^\d̸g|[k#pIY0=gT UR#Oi|:%!m >AڑX=U^'[jUsα o-)Ho;AwrF 4Uxxl] -&=o7⍛SHRԦ'zHp9sYQ߼iR]$_b%e VP$!kXO>ҔʛZ-eMbU0g?UU'(g_Vg-Qs*w1])7s֖~a<,C!ZҤ,VMvcYlVǮW!eqd$eD% {EZj=JzC7 KM"b IM.>'7Nv7RQ%' t< X%pZGԜ)SJ Y>DՁ8t#X~$Hpk"dbآVPLJ:u;|{? 30%[›yqSkmiQJ# }MMx_ɓT+]7uOK߸}n: /SŧR^dVxbǿ1;F 5d.2uE5];nRҢ/@6ڄ$`c$]ti+ի5Ucќv~+d2sp#%F M)AHL'qt.B[r}g !#'#dI~KeVK#;Ayn+?=un҂\{m+Qd\qfCmRѡ(RiH2yJ Uvx( a%BCImʕ!'J#ZiAѻή7"-oGcGl<ӫQ_BVIr{#X,,q6a%ÎN gj@NI yf/[ޔl'P5#vQI>bPWH dfSv֥2e7J6vaI)H#Ԃ`'}HLh6q\A)ղSmYߚGAGB^Z3.Wa!'l!—!cBR3s} m: /7 q@Ra4Lkh@JG{UH:LtUM?)qQ9HA U|Wi xft-Gm^-W_ Y1qCt%-xg ץl @zrT[Ń;2^sddsI[[E!ne% $gVҔuc&6#Vs_TFz'[XNʰ!rvZ.Zש6d֙FVé[WX2ϗlRsz.˰ fRi-CA I  br\ze2h$3Ւkޔ^. ~-Mm_Clٌy)TO&'CqDCdl̘Ft/90h^Z%X}XPDtERk 5j%'g)ZWs٨_xY~зgY'[Qisf!W=;$m2 J .Zsm_FY}wvzw] ^Gt 1.s5ǎZYJ@@3umRJR*oh??X7ZTިaWVU1WY ~T\ʤMbR+ml4掠<=GbrgDKBeZZV($DV&+7J(uD4COc–?p'3MBjj)M)3qMbhgzNIx_ɑT-ߓ!2d>p$)Z2qz-:".FT\bs[fҸGW;IsJ?|>:oG'J7ҷT^}+^ڏ)3AJP;!okZWdX;*7bڕQ}eṠ?H+͇~΅gdҧɥcvc~?mqTT^k[h2Xk[=d>=tmm~C:~ Vm^:~}!|?mu+} m;qhgR{oi={ h3iX]k[=t>[=dlD2~ V'ldlmdT^@toҧ{aݱJ&}k΅~͇fDSˉ?H+ʋ~XxTot5s1(=i^]ǷsӳAJPzV(Pwt[|t~:?|>:Ԯ2o&| q!@[Wc{{3~e ӷWv 5+s?8G\yzV(+[_5ΑPji[_[_5ΑSEyVGQ>eR|>eqo| m+eo|-IVG_;GAm}n|!_:G\BA~t2SJA>r2н9GAn=o{<~_pߙAnpP~2IJw ),O/_oh[ѡ{z+~/W544dm/he%i]rB@r-NManYu!.1N->ȍZTQIMbcq\hc%/8X 3oB.: 1~aoʋU+tLW)dGRЗ&c(JS~>,ww(+2mC)Ck>57'% ?J]5]c&(WES8w:Mۚ*|buQU1Vz稓Y.4QRTRR`2<5ciឪVܭ\•:E2$-MZ7{:/r 6@:x:7 JT@Dmwi\g3O?>p5ޚD5.&ܕ+[0 b(njD0sH.g^ZRoqn}|Rfp8nNCNxVO>k?h6VrueOz]jVg K8kB?t^qg+A\WT֍+WDH]&Zš%Ŵ^:5RKnl3T") ƌ-ǞuAu IQHNFO]ZN;D4ثUnȸ8B6) %)o ) *ɏË3:SM.rۃ3:IJjO 1#4}mr`K5,);)P AդiȶO~H-Z '$/t R R R R R R R Rω :uC"ZYIS&y I#N܏Uhau3-WX7=C=Hd+b> XD-q"Cb)i ; Ƶ5W5O=R@qM#ꗎg'ÌfZjUˋq&H}uEm\n<0vPDqu#ܸfSn-6mF^f;Cq{A Kc*V9,# G  y('˚-=kn)Oj}8qAiUpXA1YUj~E@)@)@)@)@)@)@)@)@)@)@)@)@)@)Auiqyo!SKS/-RpJVs䤐A5ƀ;.m-ϾX0 N Nscc&7 r])ZS '$%J>$O u9S4hxyN!!D q n [±됭>?Vq?՗U{Q7u0eE,Sb2+zb?dKdEXՓXWP^/a8"d|2-,{=Y^+]唢K P?=G~irgS{;ͺj\fDffcbǯ10Ȍdq0Pˆ' ~ER3kmIP%!$u]Je%eX{ h4))G8qSUs2X΄r%ja,#Ì:ɭ YJô ]ytHC]N{ZYBA?9X q[%W$tiu-9ݕՌxh7tEP{Fra#gB Nr urށJRJRJRJRJRJRJRJR]ciZ.d)Jޔ[$<֒k=:+̭۵%2nReJ  zUGKK[%*q=gi#~@88C%+̮C+y^eJ9-%q^,HK7'VYpJ`V3v^;{]qMec*-9A/KZcҕѠ#=3kO]ײַd::L|>Bs/{y=?Ʋ~]M ﴏd:wwypZW>xA뫡}lG\+hA8lGYO{\}pxϝ`zh?~_:O=vt/';{Ϯ=o4K}ց:o@{}gzUG{ү`zp~:O[BvO[9}}w>=ߣ:~=E~vA]:O}wx}GIum?:{ϧ> s;tG\-:O[Bv\hhW0}vO}'>:ߧ7Gү>?ޥ>qcAGIuϮd:>oy^ /]m ďd:WB#>{~9)k<{ϠH6OG96Oയ>K{0GtAI6O}t4Or;]1x\}^0Q2W}stgR8h4:Ǽ縭7'zA+k"BXp`c)Pk6”=h +[n$JjIRI54ae,"iNpQ(皕9VhMajz\!؎HPv;x#JCHq#֞KNjv?5y]I Z(\qg?WV=W\gOЬ~IQs*zmȏ7Zz{[L39:KU؍6⚢,cqGY9ͽ5zCl6vmAyrudi<ղܮ.-QC0ZTܞ䀔F?W:;k)mK VS`rHppa5 N v*S [~ }qN~9ϻVi]AsNrxҋ4mڋq69 [zYk{&v&{1@a;Nae>kh Ẹ41i~^'_;n~&ԥ+BI+]d@ E͘uÕ ׄ q'fl,ʊyĞDyE)J+$0GRRdIr[+SN'J )J)J)^%ğ d*+ iVzT9((<ΡF5afOTw"D>M+yn'IPX5x~ujiMo]<ߐ$CHm6 {sscݓ _](u❿Ƥ ;G#N鏃VOh0}u-/շߠcD NێBHmղ3 A` e 7 Y>k͠+[ k]{wmOv}-mG#Mio6Oh5ڣZfWTٟK[yi+bs^mjWT՟K\z~ jj@4Ε1c96cJ}ϛAܶ4k߂zZw1~ XgͧsWŋ|^޶|տ3kԏ+bs>msƔ1c965l'~dץ^i_?iƕ1c965l%dץ}wo̚$cJϛ\w1~ Xg͠z[> ϙkg=Y6-Hҿ,_G3ӹ+bs>mwrSUѯK\~ j5jCƕ1b96i_?h#v_5gjWT՟K[t:Wŏ ͻඨ>ط|6g+f{^mu:kKx4͏ ?ට>V޾>Mi6?kz_͓ h⭿ྦӷԿc/j{^mpt5d=6qJcR~KO]u4$윎okͧscݗ Dch8'R^֜ s-h9y(ȮﶩNl}jvoO+@{L|}כ^34lhH-8ڼh1l7)۴}@$: ^Ukf1f~2׭\\gЩA83Y}~vP ^i"+m6צmSuPܮʷ9kE+mEE0r;ӞUyYks#}m=~zZrxZ[ܸq HRwwI5j5Oa%Þ=)_Ur+oG1_U>sTgĮMR֢xMܦTG< cËR= R{IFJz-- EE6Cn d%BHBGVF-7Kit7c`?z9Fh1ji(qŀudskUwzr ɺrҹX%IVהIkS x oGzWV^%-wp#z )i5 kG^[Y+(^P3>L(,JRt)2P[Wq.-͵p6$aKBiSg HTA :IM+I@BZ;M9ѧ*sqYO_]E2tͲ Ƀvťr.RҽRk*q”nrm 4TmFjjt$ ۜO$nMWuXUw|9lcN${yYuum\j=;)g~3tq~g {N+E\[onnJi L!`$^(da gꇣYm @qn\%)iFO$dg! `zw7DmB \Re %dǖfy^e9.qm!,xP!' # uW_/Zķ[%ۦ,d:)JVIQFR7c9Bƚ6Zz(Lj$dULĩTv 5d{jdPo.#U]ĩTщR=UeHPn#U\Kڪ -7ykK2=Tت -7֗d{bdPnK2=U#UAMZTmUpeHPnrTmUuڪ ]t+)#U] Tu.VʑTmU+FeWS*Og&'>AmG86ٛ|RR);8φA%2W l\b mt$IP_/XCڥDa %o%+'iB23SÉbzbJ!-.MFo tŞjQIR䗐:e{!BX_ӟjά +i]g* a #C=ؿo*.we1^i"#zm gukærE!dj]S%;#ɜm|gڭqmP$9%̜kVlm:b>9y+bѴΰ4sWT>Q~23znv]Q3hy}88׭> ,1)q@X†R#tGzC qPܒJH=c*hjwm%KR`w4hM3&#{n~%+EI)JP)JP)JP)JP)JP)JP)JP)JP)JP)JPh4 'H((xd8 zⴏ&%zmBWэt;qϪ]woPnR+kH-&Wnkk|WA vɵ}۵&Po ]Z@]~E접 U8w_j+/]~E젒 F#xu#Z~ 5r*1-?e; yuJkQ?]~E`."PHO]pj<`q"W_kOA P&=-?ep`q"Po]tP) w_j+"PnMpkLm"Wݯm_e [gPWku~M ]wok(6Q-.-A(IʉkTmi.j}OM|;oi`SP j25u{7y"T+=5o{_'k->߯T\km6BDym]zy*kriKv:=Nv}hfGy uJ@GRJGW]D΢*ǎsxy*"z迄 ]kehXچ[6itRMgkՋv>v-6Y/8Rvdz< =8rtͯgf-j J^I' vhP\b;me)<H;iMKarR܍R<IHf6}X-%j;/l-=\64wPe>@|q[jKKgGzV&-cC[[N2w  gO5g\׸ڢ.ԫ|yGZ4cugzȚ͞>!fg$8Q% *!#¢!㬘"Dv7c NpFFA*hpu릠ӑgö2ZaQNFTRjzMq`]`MG~R Sf xKG_0TMJ49]F) -IsnJV탟P3X+o]\Krޖ\+U RJHQNG#=q V-)7#%Mqoxs{9+%{z{wvʴ\b-QeCc VT;gR0Ezq-\onk6m_Z@Jey )(B7`۹. GkO_#'[s7%rp2I| }"7l 9MX2c*:eXq!IPy̓[+Rw-]qWoV&kl{Iꖣ (.ʉi Mw~͋!J?}JѵA>5c'!Eڍf͢ԋQIS?!_%%Aifjlwm\cQ!!Ըґ: r<ڐ펠-;AJyqCfƺ‡hA[HJ:e} QKH*K2`߅q9Hug&,҉SIi ~,T=ՑvҐqp48gOPEIGvcdLI]!䷯urNUDn$ȭDg={\kn&j(Ni,WDwK^[n4`)ԁNBGPn:]K߅Qa>)[f -4rTbZ|P}j5CW!o2nqeCj) ǃv2zJޟ|k{a!k. ҔwGh Hum ŷڮVܛ|%8GܔejQגr}2TO ]=DSFZSVq~'J3CGJ@H U&1ɠ vyk\%[4疹+KcS]q*h3Jo.gۓӲf')nMsLjh3:O-:O-aS>ښvS>ښ ΓNVe3;)mMntL{jheɠ)Vee.ykpfMu2fMu.Ϸ&l{rh3KԹ#-nMt3gkvL=5StmܷS`ؽZ8T/'gW^L9q[3⣥B[BV -*):jѬ!} ".&/۫j!mAOF\V*nd~?vOXЖM)KzuJ$nI$]fVZ害@` TG='k-:߯T\km6A*[waGa8-x:.8-K>5է,ZS1VڀUUql4z.\M|yz}0kyuU1Wo8gNj.Zr'*oԩRWn ZT1<5>\ڐcvq~.Uo _-bg{oCZ,}ǏݔmN8lWeĥHSтFA^j6ݿ//W]?s;Jإmv"Z3.L,0,uxA5m[ܐb.K e֥`wuJLFɎ1̵r ~̨uzΝ>`LMޣG͌!4wKIm66SxF%Lؗ].ֈm48!Jqȟ oU2"bd4D JIAjP`iDla esB]:5Ζ,;hn$CϰMp8•ySrZ J߰uZm)|RRw H1z }"ϝ]uxcΕ:<6/gd[=gUzA $BC-% Xk^?lI1Wq{|"&ǟAͮfLN;"Ce uָ_,It4;ly]9V_4;ly߷{%6< 㪵X~cϮ~~cϠ؁\ֻw-Fuxl P ֯ 3 -u^xn[+0 $)S]  $6o FC[aƗ#Zvixgxgǂ폳=cy<ׯ,8 _6{g,:JMO2&Xq#ު]f6STs=[rӨUtϏ1>XWyo0L8TBz@|g{JVZ֪jOLF:nZ 1Ōfq[[E"BJφb$Wdq ZO {Sob+(R&<55֖w/Jgeӓ#-O 9gɞ%v/g-6Cij>5^UUuWL󦩙ǯt gtW2{ED@v@RRH <Fm~$c) S<+๚XŹsjdmZU (88fz2AǼ9^-Isj# oiZqϢ|5"OD}>̙ȸ+Υ&:i7W@vZi[ E)Q yPLQƵƒrf&/q*$)PrjG@)@)@)Ahr|pj;qlQJ-*#x:;^^TC^BC蒶JzD;4pȐ33ԮjXu->ԸR7xݜPz ʏk!{zQ k5tDR]|Hj<#[[%ml'<9oRgt e%18vJ¶)̚ Lhx>TC]G5මkmiŸdA.8--9{lGƅG5pp}A堎ʍk`{|Q H9AF5po*70]v堋ozwozo/ozz|ކo[ϕF5)Mo[ϕF5)\oozwozo-_ ϕӸ ϕԣώ,tʍk`{|Q J RP=|ކ:ToCRb-u.PFNF5}-u.PFΆG5E~Z\GG5q0|1nzJs Imku6k1QHmD ^Ja{zQ yFaoگSJTۇN$gCt{Gnߵ3^8S??m%{_tXUuO4[=(xO5Fozrg$̊u<|_Czq>~q+mLtŦxzUMJlB\=kHc%w;;Vrf%&v]}ZMDs11:4|4 3͹*+W=E&lR*i * y;պnbm7kC2۰v&W2 [rO|I݊iZ5fiZkA[lpM$BqNarZV ]E\sc*UAr\RF+hu$$)ZFjiJTZu%kwLCիP&ݩ1is8wF1z[͍ b姓yBMȿ5$d m:5.J,=*l&44ҲKQcV(*K#AbQ69N y+  fq{@e޳\ȭa6H'f<UJ D-+aVY!EѤ5(- N\*PPPN9d⣖M-ĵm/zVd%seTyS [i%E)g(*7tv_/vV-ijSZw sA%/GO^xT0pyU;nu!D2㭾r)PhiO|Ow((Oڝ!w Zrqi)9aK s;Fr*((((5ZBr!*OdO_˵eYhj2{r.8s}*bHS-,3eArmAL4nu]ڐ1؄*+[%Ԓ@^UjcB_;' LP dĤ IyG* vOY0|i[±9穊nKI\+ܗI븸?'x"`.+u7Z~:׊9 دړaq^?cOX q_'{bkOXU_'{`kOXu(2`kON/%1AZ~:?bWPe~֟kOXx(3;bkO\v~ԟph2~ԟ~֟ph2~ԟ~:P,ܗI롹/ړ!ğjOXf--'H# +L}]bf!sͷ4(~%k%mu}AȠpN/F#LKo]_\ \W$~*tYuOVI$-rr4Z[j?ά )]g+`~3`E3tvu`Ve*Q^]m;ՋGͭ+'Y%ʖ)Xt|w7߫Ώ[zS>GeKNt 7 'ׂͭv*rmؖP~ ڝ檞 T{Mk5: M-ʨt}իɷ]Y֨XZexGuUcӯmrkiI C})Qm^6*j3_ܷMfr˓]T"g=]E~u;lťX@evM/Λ]E~u;lťW`?~tߝN":iAd_7Sȿ:oάZPevM/Λ]E~u;lťW`?~tߝN":iAd_7Sȿ:oάZPevM/Λ]E~u;lť[Snj6)ӷ$2I' j? aoVm(05ڿ-*Q{k17k*j! 5C~boE(M&A,0DXO_[9Y=gns\ih+Y5yzݡէz/8o_a@1xe WPU91Ϟ-3~+KխIHڈA *ަ'3u.EniXXFC}O|CNj={ׅI:Bd]bS/l50J RDĺ~qG`Z_  7ufhhuikj֟ކn+ 4T`zTN7g!9bgZR.O_!ܓn{gxFG#ϕ5pzվ`?z,kF]w(s@CgؑRW!b)㞺9/-͌b̎@u2:dF2H$4PH*Q=@x뛚??KZk1A-ZlC]WZzd;h"Ǭ-=׽ saZ{zk1o&ݥ7^}T@g^:mo!UZJҺQQ^(KWkjs4=>էzhuikVq|]_3Hkw[=;$fUeK8882F I8{mM.6+qozAp2|,ǃ"C,[iKCI<@$$~>6vj4>xeJ~y'{ګVkAn:}--ݜM]*sKd͎J Rvh'*q("Ӯ 3 tvݮZl X$mѱ9 $g[CWoN2ˁI܍|ysP=y(.ދL)$–n'*@'Ag5sM%I)RT0RpAYҤx#S.4 R R R R R R R R R R R R R R R R ] Y֚a󗿛;A"Mͳ |sJ gˣB\ݎYLJ5BલWm5f'edPOH`X;rr?r+rN)Dt?:g1ΙF5LҎ 8}K˽? N-it0CiqaI.:%,7u/Wlnjij QٶRcGǛ!fF7b[;\'%N2( pqbݦkǟg{އxb'{? tB\a"Kj\ACҦZ[fSE1ZH=J$ъ7kPA_5;XWu$>9~Y1$Ռ~ua1PIQslGShCeۅtX9|LY-U[sFqm^6*1>h68/7ncVNt*'g|⬭_̹vz<@.0xтӌe]/8ҕ8z@?:-'yKN}ntުbyT8oe\q.O]qz-\mrܕI;@# >]~4vMqۡL[mf\$2pkkucvƂAgupv|z]40m2rO2Md4 OR.wuLm6/gYgs>t 7(4(ÁqaSlX#q5%hٚoAOjLքdLa&3itiJUS`ЫwE %ېt-1$58 wGHǒtoAkt=/@2Yf)1ơܒ`~9~5XpuΠE^&*;0u]6c7IVfϖ}֛tR9PMEF%ՖA*J/ |_nv(ό򆋻{=~iUUES33T jT'1"KISODJYʆحfXe tr.vN B BCM%=&Ѱ'Vmrm6TYNp`6Ғx<1Rɽ-62Z0H9yդC=c8&-vV I5mqg1Szxo2lr8Wmva% [n+n@>_(0u_OwEhU(1w{/\"4&ޏb/G޼s+Yժm"0}x"CvM)WB?0dg(5H ː]%Εa%X<@uszŬüP$ܯ5!y7R# _^jtbu8|q580zRY?냨uA0zRR?OzUS޷t:'^\IKZnGq˱t'˴2bgjmb)t[tT5((((((((((((((((((((((((((((((((((((?lyricue-4.0.12/help/C/figures/docs-wizard-db.jpg0000664000000000000000000011345013053456656016254 0ustar JFIFHHC  !"$"$C/" n  !1"AQ2STVaes#RUq34BF $5CD7Ebdv&8Wrtu%'IX:!12AQaq"45BRSrb ?JX-:o7g9ǒWJwjwj*Qޏ3ޏ3"Gz?|֧z?|֠ҥ!?Z!?Z/Jwjwj*Qޏ3ޏ3"Gz?|֧z?|֠ҥ!?Z!?Z/Jwjwj*Qޏ3ޏ3"Gz?|֧z?|֠ҥ!?Z!?Z/Jwjwj*Qޏ3ޏ3"Gz?|֧z?|֠ҥ!?Z!?Z/Jwjwj*Qޏ3ޏ3"Gz?|֧z?|֠ҥ!?Z!?Z/Jwjwj*Qޏ3ޏ3"Gz?|֧z?|֠ҥ!?Z!?Z/Jwjwj*Qޏ3ޏ3"Gz?|֧z?|֠ҥ!?Z!?Z/Jwjwj*Qޏ3ޏ3"Gz?|֧z?|֠ҥ!?Z!?Z/Jwjwj+>nd]ͅ۷F;O((?Z(?ZSJRJRJRJRJRJRJRJRJRJRJRJRJRJϪ~X׬m|[.-ȉ8Bze6% >J}5ǝM:>:ej %{73q(=Jּ}m={9:ңKZ=hH5s\i!8ڛLM0T 2OT29{A6ڛ[dN&ΗiKٻnv88aҫ?S:fq:pz\،g1̠RRFbvZ%uymmZW9;v\Hז}JU }wS_m6h[\ݓ ZC(߷<((((((6wѦ%ػzu։]^[[V`ݧ4ŬԞC֊MҶ[Ţ2JCI c#g%N1O]ڎիVX]m''f{_{g=ĸw?X:n߷Ś}G+{vf#=0u~. {-fIoןn}E?fes?Ov黿:O1oC۳,W5FRiZj:S6)-iJ Gi5L$/?hxO]Xsgj@JZh(-? PTzxk%qˡ[-,-*d-O(< f4Vv ɋszXIqw @!"g9\ZvJHF})AZTÊ ksw`Zy.Vڗ($$Dv]%Җ :.>^j2]JFT-`rn|kx+֙ #a nP+<$=(}ԨǏ2cn%h-o*O/÷Ǿ>U)=';AIVNl2q;V^R ¤X>,|@3IjkɥIR]\amE-U[hrT8æ(W2JyqfG:zd G[i\H1Rv@v _e$Ĥj{KW9HW)u識>ܾnퟲnݷ8:tO ؜ֶ"̟i*J6)?<x:kJzIȖ2ݑ{ CH H`4@*\v7ƭ%:5:~x5IsD'b$b2Hv%)oݜS 4 eBjW1?»O=Kq.o՚nPon#KU(QI;0sLm>\F#A ?f ~C[sVk*4 hQzhA))@)@)@)@)@)@)@)@)@)@)@)@)Aj+vdRgݡFӚrCm**N0HZ< mpAґeE}n%֖ B!@# Α:wtr]SϾ:uj9RԢDI<5Ҟp$F;(*%-/iZVIn9K]"F^@Vԣ\2νjg/W_^2U~EDJ 6k=pmg=Hi Π響u_\X{vFnPm9 Exye8Ux:ζK{T qz7x,1*;̸B{Ah i ERw l>]H4/'K4OU6|-05‹Frs.t$@0>J-r0vH(+p̊G JG"ˆH;JT.zn:jQFTI$dPxGA-pvzoTmRXi;Pj҆ђ9fx]I9u!BR!!)H`A@z8W7MUh\lʋpHޝx9Txb eRejj䀥AJq;/^ٝ>䫜NR*K֦WqNs4=K2o7N_aӓmI$!%i$$h2{ҽw-}:]S]˶!}n1N]t_sKIN@ZQ)σ+^;j}EOضg]wC75ɺwG<,XZ$$Ŕ䠅kT }gYZ.%`K^<l(ʀUwlmCWȷMP츂JˊpCUցЬխ۸okd:߷9R:n-pGխ.bYu!b\VSIDW;jǭ>\D@j;>VIvZb%)HBPq:<%*Y*ǭe_au+.s̎.+_k:2\^A53)[m0-)H IA: 7 nrEV{sЙ/ E`w)>^CROcwE*]orJNե p{ 허fG%L%TSQσWCL`nSFpl'frswsHtΠ97+<iHm IeX(Uf:53l+Mۥ$/D% ԒVV4zI#zDre-NF¥* |]xmWGe(Ƙ>i>*&!Ji]$;TVq9PC#7[uEQ.r}3cjn #8#8h襳qf  0#%ŷIp4[ʃٓŁDY3Jyp!-J<$@ }WOlך䎏]=v׷ċ> 33*$<[nC By)$<5F3(ޅJ:vO_[z ތmw*^FNH[JnrZ%4N'_01kї0mnCOb[Z`1*˭F64$'Hp0dY4>OcwE*]orJNե p{ F桰^gh6.əE\JI(VP`'kٚoP5,ӗe#nV hV%H$aI8ZO Α:wtr]SϾ:uj9RԢDI<5zz,t DDvԲ+)@ HnPGY\J 7?T^T6wttgRcmݰ'f&sF^U8iJ"qި]NdN +#{HJmOjWO>Gt"qި]N7ԏy?E_?dN +wzw:HR>Rv~t8T|WcWjTtWKvZ3e.GF$nۼgjs rOU8UMșT|7m>wxͣqq=@{oSǶmEGNo}T ǶmE;{oPOiP.o}GA=@{oSǶmEGNo}T ǶmE;{oPOiP.o}GA=@{oSǶmEGNo}T ǶmE;{oPOiP.o}GA=@{oSǶmEGNo}T ǶmE;{oPOiP.o}GA=@{oSǶmEGNo}T ǶmE;{oPOiP.o}GA=@{oSǶmEGNo}T ǶmE;{oPOklX;lfdy%дRyj 6=h(4oS*Nۊ9"3GZR?%M46 -=ӘK nczT{֗ǶmE;{oPOiP.o}GA=@{oSǶmEGNo}ZUhk>!B ;3ۅݕ Cr4$r2-I@ujK1HyQz9;Pii_k{;>bqǔc佊sKUin=o"lTP<u{z-:~X n6 QRxŧV||ѕYxO֕tRtRR'!NB}+JڂJ2H4 T ITd"iR ( 搽>==n|HHדz=)"BFqd: *S;xinrz.2C3-j'GJHwv51݇N\[t߮ ⧥@I+qg =*qnÓ`[n,\dO_҂p  TO ;q&ហjrϩ{B7to ,:A%k ۧ7h#}#ί#I̒Cb\F~S)uCMtsȫ)Hڡ(,U[lsQ\\IUKq|-m)IRȐUDGHs|fv.T˜Q.ufLAS38ixˆsAqҵY4738H$Y(sﺞxҖ.6:ۈ ڍ89a *oPt款8.՝Ra{PRK 6ʋ**5l:V! +4U\K\x/!e-!2RPHASgnp=ZR-waS.5.*13aۡ;6-ZqBfJ!Y_nX(.әaʎ\}P$sW]57`mn mTXj<ң`GDؔ˯EXDRQHP IJp|DwI.8ⱥ(/6 B6%A[vsg#"g%.y!lZ3e 䜀NyPMJP)JP)JP)JP)JP)JP)JP)JP)JPeMZʛZX =U=ƮT=ʳ^~coʋQ+tW^)1A;f2lɘ՝2s8 @NkKv[ (Tn#BJ&}>Dp`s+qn-DkqEJZRI$Oi5}z-:~Co϶M P&? emQI  I# z/RŧU|ѓY+ڪvb|3[JW6I)JP*z+Zkޓ x= q 9Qj_v9R"jX|%k^[prdxda)6܎sTwZTdHJZ^MZZvK%{uEm6cζԠqCJ=Ѯ!2̂y!m,-!My~5w\V-Ov]nztMq@jK.4t(h I9ȰAQ\n?=7:5,9l5+TBg~OeJ`tEPB-mAvH@Qdr$\SJ1SmR? 4v14]eSŨ)X <+W;~WQ7$邚[{s}#/1&\XR ϶ry |=/ ޼X-ANyomhJ*)H@O۵V'RDm[V9 I A&ᬝ~| 덭VVB)GC>Rq5pvd2wyDKKLTZҎa <֎Cw΍;r`c'߮ ?mtk=uNXe4l%7Tryjg"jHF()0\X>.cA*惃`foIi+D]["6\K3و)HJx#8Vma=u2Xv@o > #VӶ(kcjDX)N)DTڥ($U$y܋*;paMqɔH3aK) eia[AqؠyYNNgP5E 7SMck> kY̽˽˗nzfmji)m%="<'v|:҂?6{6\f)Jday~j)xX-:cT잝͎nNd jˬ jvW !\%qrCa9BriԜ-!լ$sBTI_]wQ"\re5-Q-O"RdqAJdyYꯏ2j3tcPX8ۗvm!R:u G/=*. ZuO5+xs:ܢߥ)\ )A>2fA~"}ڛ+e6AT OʤYr紼qmr.QसkN)83v:^jܻzQt}Kݔ1Tzvjl9-ߚV_[I-6A҇7)G'"J[wa:u%RQRBm qK"21*x_̕v,+L@qŭ7@ʉ.ྫF:dWrWF#m6!gƵg$rs~L6Kpq`J dC*' boI,wȗt=T+ pzƓP?O: w.<'ԗdbb + Aktїf؝Fp - ڦRF]S{ƸGS-gV7zkvu< Ų vg8IŶ8r]LdE;evoSM<-rs%GfڲsUViGf6y }ǔJo) IN9{pmfy|r"X=1Pndj i E{",W"չ5SxR 6rڤ`j;WP8s&9gL6z#MF}Ɓ ;w[:on6RnpΊr_rjk::?HݭОi H yr|ud-٢nYnv t I)PNT09Y͇Kδu$jr vPV^HEUue: yoJS]c~cMiWrAh^PKm'r~Niu˪R@ZJB9'uM5UYE\nC2a:y[V* {h#[D-c &*cAK- >{N:ɬvg-_vܬ\- JAN|ub/=y1]}TSUP鲮x^@9Vti%KYmIKIz3%IFF|CW⎇Zgn;jU5m+nSjuF%D_Z_N.IǺW2 Uct+TIحOI>">P(+떠6Ugen6ԁ: QH$IV=׈:Mu66ͪmhK ʖ*H1DB\[oqSX¶! Ji-Q #x [i g$)痒Os=QbXk,:eSQ[B|j'8pU޵\k׋d8uv It(!) TJI̜w`jOL^ .hۥteh(PQ>@Q]z@X4Tۓ9'*0ܒm'$OPmu+r&*l)Ō# |}O|}6)OwuJ&ْ <&wltAJqY@vB/>ċg.^= .%_SM`hN9f3΍$\nѬrYꭎOo) R$n׏bhD~96\%EIG$I Nl@V]<lGYTu-'x;*<AXzS>^=ۗL9B'Jʃ۵k$ř[}WVFiAh;q\Q=cWj>͙,k%Ց!hڤ!Œx_R@qRK7{R`μ'% $ÀI 4O#˙8/e~Tǡ=l\T'!# )\\JP<|@YGZ!DvN$$d+E\=`j]mRzYvnE%* H<2Lm>Z9bm)wI!( =p]l[G~5%[74t! ;$xűdԨ)Yszoq+.<1<"f U\[nYnr,anth *Ğ!jґgg]u~%u"ASl]Bz8)K{2R0}!1N?&{TղM4J{jsĂJgɚ4/r#HmMӃ)ZHy)(r̽3vZo4”DxҤ=Jvo#i-6EܤҤdiJh4PCҺ^~5!ذZ]C YN@ 孳kKh!IPYT:cP0q=it%ij n!IK:JR2cuvbp6did8m2t;ʲBmk>'mj`Y;6ptkiN)G9)1ؤުao*@iV;kROJZr9;6G4j5}nZKng\}MٗID1%خu-$P#"*᮹7;d71Qˁ:$!(eN^>ҞqMSwjӍn-'ZCPyih-['4c:w˖f<ڝmZ@R{HIai 륭 3νn~+jEjFэ~Wd]4}P8$FGp{e+ >~j 1#)-%DDddp9lj+\*-6;}uf2q'yP|QV:L-?"nMc> $!EiE!fbBM$|Is`Z{\q+Y,[bjKkU1FHfSpBy>*@Һ ꐘ<B[^^>5|]q?Qx:4`4d\ ue9FqAfR^AErEe=ŖХ9pX#jJ) bbtۙDYN{cQVe{T Q Z$ 4*ֺ]Am0b:q|$%ոJH'5W\wE ,m}EpeEpDpn#qK }uorΦBBqhX*(Ij@Bo{|B4Hu|v7:s +F=]3*a`.HPP @*Rv:BR3]/w/se%mBL(6qрTI9'rg/ThgnY4'l7!l:=K$΂ޥSZ_VO{m1#;,R_a) !Jy9@jRzmVK;9Mԗ!2%9@|@%16V$aJ 63*_i_c$-U']XlQ2YlmO"V6īH4Ҵ9k̵! H ZmKhiGfR>"٬4z<Ņ=ṡno ,()}"@Rr=Qr|McKW:BPxe)@85KSxp·(ҴeN^RZp-d<Jx)J)J)J AuYSkA"TLgTpeYg1eE쩽]ib+m6nhhz+^7rrrEK;s=ܪ.Sk3wjDŽ=38|,;¸gmjW$X1o߻v[q\[B<}=zӱV:-$H'*o ܌Nx,(|{%E%;v4ϩGzwJE=Tj5jόLr=r۹WF[ug]e.jnHqh3Zu?5L-0zùbBm~WQ n}zO=SXŧS||/ѓY"6\GN:OU֭)J)JkeQLlۈI{z2e8=rA3[m -QJ} $  z%3wJ*98I N9ի_m7V *4T! !'X5}Ԩ9Bk^:]!8<}랛MJzĆ FG58stܬz,)}h: x;H$`sJ)%E!Cp#<kgY-oԘsy1 PHJHefMGe͐h̤]XBJ =Q?ww7uX;em7&v. +p]V{rOo Ki;*po&ZLd>CΩAJ*»G4N#R D\z2 +X5]N-!.]mBKbuC>CAcGn: #|=/eiWԕ帵'zFd @gʳh=g]v%[;:9aJ+:e4[r"{O:Ґ-5v~;<`H%[`ʸø?+ Vp.ѭʶčp7&W\SUdg bb\v@[։XWDVO5*452$%]^² gҕI I (!2fWFjiS2Tkk/SRӋi0FG<ZN.βxblĹ1'b GN!QO/YbEp33I,!@ kg25ƌ]lܤH%o|8%e[tO!p{@iEeiED[|tᆐI I''} KU{![Nдrk&EƢ_--\#@RU/)YI ̃A>0i{:NpϺX~؝ʓD'hT@ @##!L"VL"A1R:LJB@ێy+┮$$ )@[ZRҗ%m^ZRqB[v#6M\᭙nTmYV䌒vj]f@\[ttӏ!`w8֣*Mfj D֠0VR m$Fs̤F-ˆ:ϰ5 5Suo9Ҹ7n))Nr*cJ CZcM5>%?jDmcHLFÌPe +L1NcF&z:JI* N䓴`dVUi[3֝ܟvD8gʹ֙حV%!HmAJBrU1S:Pp` 攠RRʛZX7?.hQz{c*jE U ~T\ʠ1_x+"1[ !ow=im3ͽm2XNQ*@d-k5lzqZaFBFTJRRC"*UWUOU#h^"ZoqRO(7Pdީ:Eۃ(ߵID< X%pZGԜ)SJ Y>Vjќ]Һ u$8SmFsoQI+scǝ:]j =??{PMqmͩIRTJE]>N_&Wp].n1>.hk~yH , N#KFEgi){[iJW:I)JPpH'IH*òLx]]_E)J649ܶϤH/%t·Aif#Ma9B[ *3QnvZLk˅Kq2敾[6<"WSؐ9MJ,2Z~LM3 >SITHPs1٦^iLXBiqڛJ%))IYBu;W=:-۶n۞x&Uͷޯio^Ì%F1* [rWn/NT%ˀvv'vfv䛛z'.vxxDPദaDb+jZRl J x$4ۭ-PX)RT2h#*=.#H;Z2; rv`V*ܬxpaC\Ĉutl$@ RXMǵZ.7yE6`䝪_:Wk[&e!曃"D;$ qv4Fhb2;Ih6*%-Z|=,`FjÜ4 x*s|:=0-]ϵDUmmASaG HV$v(gTo{:Zoy*T/uNRࡿ;`y"h'뫿Cõ4'DJ?֑t4ަԍH;1u2^J=xHOYG >ըݗˋzM"4q7$(o RR00 o&m0 ̷]9G{ٯ&CՖ4a~J%s?5 ӷLkNqݱbIF-"~hRJPsg{njתjS5ӧS Jlh*y{RFTO8~j~S߶vDUVT2Qkn 4(~vhH 97bos 1tPH-!n9d $n5X55NЏj8#J%’[Y-c*]ܻwEZDKA9) @ٜWgS՚}CRmRT:Aw$0+ƖjTvd6P,-r}!eOBgaܬ=\4k}j5Z.ÄzG2V) FyW,p O<2&8 r'<0'CbOWy2[ OZsءGVM6i2L6.]H :Ry]W:jlZEʴz6l3nɂBmE.)’TdrĸÏ29RVZ}%AI8<{|S׃\HInݳwnfh(m'2]ud1u%Ģy1$ĶmJJI$'w }j$ꋔS֘*qA-cx'"qIBF9jm֨V,(̥n= dQ L8Qh @$]Z=hWl5JA @@ER-m%AJ@NVRngu^E$#36+#=K[ R!쌁ҡ<Gh,ڟ_Z3UC]eڋݜy-uN8NJSJBݤT>֝qќ_&>EJn\h̫( AN;9%GC6{-i[D!K)|S*@h;VZU e!Mp?=.Oſ\^rԔ t+b}vYNB]P$$ Pk-A5KvLv]eBiEDW6M*mp֢5($kU q%Ɉ!K RRJO9x!̉R(qpIRc^ѥ#[Ϋ۱\>4d֞nENa+pݎ@ fnfnbǖIiM%r(O\(]#FGj;Cm %)rԥ((((((2փE-eMZTިaέ=Pc=1f6-Qs*m6n)Hi.! iiZpBTLVnP+j5̉li⇌_ Z<tω5 qiS*y$W}/Ct1ptc,eIQl+\V-fNoOF9i[ѝn%pJ9Bpɒt*ҷ*+]~.[nn`e] p֛kOD{L)UǑ||4Γ 7S/-x;3: Zu'O}2&C}BqũkQ #*Q8Wbө>>ȭxU;ا?VY+((((((,hq1iu͉rrv|uJ)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J AuYSkA"U_{?ujU[DZf6-Qs*m6f)9Eu1LGi:Wd2TyXnk(g:|f#AQz-='Q3#WbӨ>ȬvTN|?t,[BȥqN~Q+9|^Q)'4T9IO4ßvAJÿv{Ah;)]xAk#_?Mm+lekgҮ6V4}*WN^揥\m~dT=̟J3dT}}Ӯ6N+ӠɥclnN?1^U+eQ|^q}͕eұ:;y:㣹n'>~jWې_ͥatw_nE~݅eu+zރkeu+{v+Gu/4W(3iX]ې_z;!YAJ~ۉes͕ܽeұ:;:eQ|^U+dluzuٍ2iX'{b?;&b?AJ3dU~OAJ/٘JӶOW;d{+_>m+k\douopݣ|aϻG'WIP}RskA"փE-< Ъˎ=:l[vUn)1]#(SۊbԴ%ɘ9lɟ;) ;}+2mC)Ck>57'JABrW$khvaMqTM|Q*8qm6u3)4U'46ꢪ#bӯQ'0\h:g'>dxŧP|?ёT)1Щ{ag>7o…Pnzx}Eo;3N39yLb&gbRp)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)A7?.k*oh?]b*qά3܏ῳ_*.weYbSё]x+"]}zU5qm[{V+6K7!GٞUһuYJ$5¹^r>r.Lbqc'pٷ]MUوLՌtSv&&#b7̀N? 8 , TmLmRpFT HI~WGҴYoq}"xV1G=*j~fT~̬*R+)JP)JP)J-g;Ph+bҞ̳9ZٻjA># *n]FrTRHqI@[ŖT2x>n5nDsc}$ѠŸ.)YҜ[=AQfIˍܛ^{VI!OJ#G`8'A#hLm7k8s6YaEIR| W3pqXkzeGGX!n'r 9MJt]z'lQA'vq̨H9jq6m1I D[jڠ᠚RRRW)jC-)amˇjj θivA/v9Ɲ? =:w;R{Ι%BݡZmr.[R6hϸBOj/&kwrվJ } ۵/N=Luo{7߇:FN3:4հ!YYY>gҮ:*?g6R5R?MY$i|V(*ȟYk=jҥ[5?M: ~RgJwS~O,4z܊QgFS>?MsԵ5|V}(+/iԵwU?MYԠ[Y>gҮDW]=gҫ2P^}*js.>YT==Us7JPVԾ}*v:3ՍJ ڋ9cӯ[^?UJ [ޅnz+3.E B gKh Xd~G@C=:8reJV+m6FDu☮ʹAaJ ,; †p5}\rQ5#<Tȗ+}0\mӒsWKJXu[IAH>7Zz{[L39:KU؍6⚢,cqGY9ͽ5zCl6vmAyr5s@b~S:;k)mK VS`rHqDg2Nу_w>?ÏOgRt)@)@nC ?̃t)w9- $KWJԤsmV()e¹vvw.o<[g[jm#;|jV|t涓.M(ܧo W%JqlN`cA_DmmC̿wœ@T,{F*DV.z#-0Vp@*>?UJ ݣ25 Iڜpmɋtm#^w}jA*FH IH$*PR:Ç:bH G -%)$R=ƭXChП3SM2qͣrrsr 6]((((eDqCGW3>nֽOA !?pj4̞1Dkq#:8i^C\ 6-KuǶOBل{A||iIҾw>i_E4vu[ܮVjq."-6BsTq¢r嚾X%'FCL: A;ѣrr9U|iIҾi6^bimH IZ )J)J)J)J)J)J)J)J)J)J)J)J)J)J)J s@(yGsVA'g4>8$W?U{7*ª=o*.we]☮ݴ](TInYV.V7󇓓ds#R]VꦩYk{nTar1uw%I*=p)-yW-7ߏ//v \8nԴDn%)hF;C߬= )JВJR R R R R R R R R R oAhZT:hRFB>Pq]՛C8ZgU_=ǑT|[jPj;#>a隸6Y5W}5}ꯖkcU[Pi{'faߦ•V|[Pi W[ÿMq ^w5^5ӽ~uV,9\w/ݞa҃Av+&{_,9R PGۙY|;ܙY|H)AvgMcÔv_=cÕ~쵇W=Kc>Xrw+݆akyJ ]ÿM;+naߦt WYÿMr,r}꿖ksJ ?q$_,="#Fa禮 4t凾=jmJ P?S_mZCf1˭(2e[aiv!1+փE-\\gԩA83Y}~vP ]i"+m6fmSuPܮʷ9kE+mEE0r<UyYks#}m>~:ZrxZ[ܸq HRwx*I5j5ORK\w?;Pcһ[+} WqZ{Ю;֟u:AJgZޞލqζ=ǽW{:4iιM9ǽW=dӟ{Ѯ;~˦@;מ˦Nu߲)\N-Fg\&ލ+}owz4g[ޞލ+kz{z5{Z^h:]Mk?{ѮF>5X\OϻPbҲ^K/+G~ާ?sR۴*Au]I2l,2@c+^AyA3SqHgR%E젘+m6DDu☮ʹAS.zrtW(^d=BUہ̒_(֥2Z/ڃP=h?՟jŶB"@H2s[-GT~u}#:|er*+]zf-nSZ'sg9-;gqWwnqZ>}XbR8 GߨtGzC qPܒJH=*hjwm%KR`w4hM3&#{n~%+EI)JP)JP* ۽MZ-w,]dHDCe-@H_3b5 ↌FuZ{mṲXF:#J77Auҩ>H_Mq6頻iTКHȑHcJh.U!-MJy*5T*h-~uJcιP^T3y~=*{5=* ʕG}wF:OP^4? /ҧx:C#?_AxRF?HcKh.U"4&HW\GR IGk#}4]*'J}Mr4V$_~ K 3K}AtR"&ZehZJU7`nﭵf\VW;F#`Ł{°@P0zլ~IQs(vmʹ](\]n9ඖH88,TsVk[N$I[jʟڪ{aiuMkNg_Cک=x{><]~9}!kA(8RI][{+mk9P23PjrjB 63U9Ud+4Mˇ?߅ Kj8gNj?vS]9ŦEm -7o/W]?s#)\()@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)A7?.k*oh?]b*k;dHRlI;y*mP(@r$Í/~Ga=vixgxgǂ폳=cy<ׯ,8 _Oꯞl՝zU:Rmjy0C?*;X}wڿMQl mONKUU><_DŽa\uq0SI BAU)ZjZS1<=1պ>h6+GL339OeoYm#Hi,9v|/m-*#ntIIpp 1NԧqV<~ɪKsmw[[&S$SͅᄡmmYo'M8 s̡VĔ>m/l2%(ʀ#*StrZPYHa2N+QoO%Rd9.,]C<۶ -q0WxUxKQ wM _$[_ YP}=1K!JQ#K|\JyC(Vd]{*jCtM' ^p>wu4Jvz"nt}>^*p˚OPL)[h2Te%^B|BJTTXPOo3kW.Z -s!(|e"Je$삜9! uG} mdPPi6;\ŧuXOI.6h ӷ# mEXYqVifݦ\#x[AC{DCA}ɹFb̑o Hv(g S߮M2̻&:AC<$xT@YA4-i[-[*WFpm>($oQNiȡTV0F(7%#GrDeTPJRi$N&0UJ]m*IiJ\W$̨Tz뤮6MZ&?gXМI@VJp'rxKk߸j JJZ)W!D#$޼:a E=n)άM%eAN+ObG.A2'ȀĶ\[`; Ǘ*rAzpqS;Ý8l'ٜGuƠՍYmH{t[DVV$x t_54w+5JU cd%G&z\Vd3,䆛RS;GiʣQN-'k q.JK.8JpGq>~q+mLtŦEoU5)VNYp#';AZn^smj,)/b_2o.eդG8>ӣuJR" C<0FAi@@$v%sJq\҃攠IJRh#iJ(@=5(8qι(Hi@)A+Pq]MAȚQS>DVEp@ H2`p‰r#BO(y LB@$=((((((((((2փE-eMZal:>ls](ݻ=+2OOr.LD% o߫FMbޕeKQ߿V/:>;›Gѭ)Y#:ä́ ֊;uĕ96ÇlK(?'SZTmNsUOi=Ħ赚}TOf>dۮkT[UЬ-2cB;*Ʊ6m9p[dA!v>WEXLSMS/[tMeɮc3E*u/7V-*+?|JAdMUJ E*u/7V-(2ΛHtߥX$_:oҧP"~b҃+?|JAdMUJ E*u/7V-(2ΛHtߥX$_:oҧP"~b҃+?|JAdMUJ E*u/7V-(2ΛHtߥX$_:oҧP"~b҃+?|JAdMUJ E*u/7V-(2ΛHtߥX$_:oҧP"~b҃+?|JAdMUJ E*u/7V-(2ΛHtߥX$_:oҧP"~b҃+?|JAdMUJ E*u/7V-(2ΛHtߥX$_:oҧP"~b҃+?|JAdMUJ E*u/7V-(2ΛHtߥX$_:oҧP"~b҃.❍h) 8$vXnVeoL\` eV۪Jmz@bFr~4G5-zjHTT>M&A,0DOoVoj-,۳794qpgτu,zk:شv <P%~AE\`c7~DZ.Ĕ -m]hs0YZ{zk,o:شwX׿S](B$ uN3p`}(*KW,vouƮxm!i~BR8.O$@ٚţŧɲj֟׿SR@7r*0y=*['31ZM3tƩI=K[ [^3F~ cgk^t)阠[6uгkOߩ*^>ZC&.,zzkbzj!xvf4މxyAR~.tpٝN$fUeK8882F I8{mM]8mVdyFINiX{׿S_&˫kZ^MH.O[7 `۔Q5!%,(c(^%so1˝C$]Ŧ9{g;-^ vr g?6\?i={5mzzxf2{}EZea݊NIxA2p-+-|kg'1; m- $Y{*_\۲ڝU(A~VM2t[[8y|ҡcgΘS\ ]tj[_r:<%# $VFKnzM5nŠԞG 9#!9y:_Ϥ~/?S[;4c[Ub1) x'vϙ =@L\:u5٭-sRZJэ'mIA6-v?>6mt;X|jb R'*ַ7'p*ݷ'W\ۜX&lvTmRe[A9V3A6p?i>5\p@Hϣbs $g[CWoN2ˁI܍ysP>ڏMΔoEs[ aKyy vrD䔩*)P8 ei^JRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRZA`p@!;[Z_y#$?k̞G4K qt*%pV#Z&krvXKy~ەFy[mW\qL#^>1tΊ6`N6un5)!@䥆AT3\bmmM-A3YJ<zW,csb5,PF B }NW S $qriꪚ1-Xb9/\űZ475K(A=F b.w |#S/O_:2^N+QI.OIHVIڄ6R$M 5'Ihrۯ) |``(VUɫ4v6Sݼ杍)JO0GiSW+mtDar`3[*)Zʛ I$m"pXZ,6W8[>EŜg[d3VmQzتc0E9hwY:ZGӨ`CS_voUU1LLBۮrb њ 6By9'&l~R.w봙ۜm^ӝ,zyLZKx7#أТ S (ʞKdej'q+Fz | U.f#"c 1 ?kK JRҞc tPtXoOݲ]GBC]~{Ր~ƿXnV:5gٚrJEdWՋ?,5XpuΠl^&*;0u]6jy3Anxעinu--mc$GTFQfnuAePJK+\wk"(h]5UTU335O*\֡Ms$J-:D va>?Ŋj/uP_jHN"n -4PmrpN|umܭv I\snEg#k)+OgȑXKl*ۮ-os%ZA< 33k=ben(ptXxc7xldž.v*^pfm9P>l0VLlj@BnЗ+0ЭS9) 'km!*Z+ N P*SR#$FZeDCb#@t%!'9E?/AѺíE "ji(u]l xJZQ}tPS<- D~Y&_+gJ $oC޾?{~Z?*۽\"M(1w_z]_OzϥSoGrE@0QR@~ (5H ː]%Εa%X<uszŬüP$ܯ5!y7R# _]:y{J Bo~?~b[JPk;b\C&/WNyQ~_WNdQo}W=Ny>^ZJZv<]>sEIiAvRy8]pŨGkeJP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JPlyricue-4.0.12/help/C/figures/docs-add-song.jpg0000664000000000000000000006705213053456656016073 0ustar JFIFHHC  !"$"$C_"a !"1AQRSTUVa2#4Bbq$36stCcr%&5DWdeEu.3Q!1Aaq4S"#B ?%C~< /rxjISPd .$)iFHHR Hd W*|$Q$ya6j,51RRK IPN0CYn]9*2^B"1l:ym(QTG.jwC+9q:% bCQ.ofc]6ܒ !JH rA){.\! Y..R٩+:A^F tZ6fb cw-IOQkaA^ [--+L^͊kZ`L6$I^0"f4!J"V˹htτxf{_}qˮ#qdه1JMN"{r\)or Y Yͤ\d+|EˆJ:B7tjgI.enzj_Dt\`Ğ^Ju`Kj khsVEC"5?ĩMĊNvP\u\҆eJ'` 5wRҚ[T74س;WQLNf/%{Rl){mNq [{t*Q9@ $QԮse}Zr#6.nt e9n@Z]/kJjEIɽHp] &h5lQ̩ I3a.66􂥨%)JwIWIN_WZ/wk(PY7Wje3v]-`e!AO95i˵'؂a^e6Re(IQ CfdVa_ rp,@Cy/\](8sX(fr#I$ @bKWؒ;z&-IBZKN(I Wc$:r3T?S@(=n~׍-(A3?>^tz{|}5/םPWRWR:OSRG4{Ԯsz!4'?Aw1hJrƭv>=2O> xy^2O)>P{]yꛡׂho<}5~qe??=|#3'ΏPU4Ҟ:}殮?~B?UI*[No֤x_5#j'n/ 5]8:"O$d<$N[IzȯoemmoT *ҜgJTrēܠ; 5>WK}o֎QM{ ӫNY| ;?P\=\_uyP@RBnBhRXi_u4`H?n~gSEl\NEl\A?5SEl\NEl\A %pJqh>+SkiJRJsg٘5=r{_-8=r{_-toT8ߌN8=r{_-8=r{_-#tklton ع= ع=5횮ߌGSnEl\NEl\AߌoڬmپʼJUh iN$ ̗mϢ7z+bZp7z+bZhDN,e#r^j) l[p.Okp.Ok嘎WYCZra22R 9/4s Rsb[T灸C['ӁC['AF?3n~oT끸C['ӁC['s;ݦxܺ[=Gs;T灸C['ӁC['AF?3n~oT끸C['ӁC['AwF߄j< ع= ع= 7jon ع= ع=5i7S~El\NEl\AWto#کp.Okp.Ok堄jo7SSYXM=r{_-8=r{_-#S>1U UN8=r{_-8=r{_-[q dA>TへC['ֻ=i·"̍YyMHZ[Q?J x"^qaU%dn}?:.-dP*D6]\' >6-I[hH#&VaZR{uԋ3T+=h9&fa~Eԋ#rSZ-XV)G4$;qY+6H؍5l:U(Iú{uj=h%Մʺ\ڄei H$^i*AҤ6/tvi֜д(>8 a1-:nnȻA |6ʒOl.mzk#Aǰ$vF5&$7fc/@=MP̌?l>I 7qZn+uB@5%dNdu_<#A/Ut AMyw'[1 TȐe} &Mҧ'0qNJZ5&BЂ +2 J5zP }j EqBei ;T;T>}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=}ßɲz:p=gÿm)Uk?& l+lgeDu˰_m:jR m*U7g8d~Vwl148ſ<\XIʛp")H*)QZId}ǃq&c /.%GRPhPt ~ WK8,0nvu<`hYҬ{GVvENYՖr\mw[jl:miP9%9#hZ-Pu=#bڭrsS1"2sAVВ$u rwufWg]ִ͖hJw$33b0!"!:qt7%#N5RRk_UJd-qn qc%$6vFp5uˌ֞,@BuB.+NC%fӟ2FJx{.~_ɮ+[/UTn_ɮ+[/UTn_ɮ+[/UTn_ɮ+[/UTn_ɮ+[/UTn_ɮ+[/UTn_ɮ+[/UTn_ɮ+[/UTn_ɮ+[/UTmĸӳIjIP.djl\)N fP o|^3rjxð_ݖ2wHga;j(mY<\uTvb16ҸV-@{kͪ&˄.k&,Vd4YikBAE]2_k@tM{s>yŚpyOf;[)JV!*Xg?QYefps'ETPPܧ[A#,!@9eYrm@K8-Pqnⴥs$*I|zɽ[יLVuiikfkGӅk+G֗i{qp zW k+GӅk+G֗cҼEi1^"4aHNaHZ^JǥxۏnQ"~=8Q"~=ix=+^~/n?CAFk|Fk|{qp zW k+GӅk+G֗cҼEi1^"4aHNaHZ^JǥxۏnQ"~=8Q"~=ix=+^~/n?CAFk|Fk|{qp zW KXCwRԣJf6I%+t/v[}q%FCP9m>8 'oβZ'ni.yht-'`ʲ qlYR[ӚIЌ؎W[}'iIq{[E4 -̷&S Z'*QVAմ/ ZXcښZַ4kqũŨ$lH*Rک[=&qiIqֻCgzhm-i%:cd2d*ۜmdneDV^)̂tNSNzMӭ_t4W`fc.AamMϪЦLu,Дn{I NՐ#uh/6[g1U93T_t4zǤ8 BgZvpU!Z1 UV3;NVca?le3Q,7 vu4ykMӭIo7CA® d2 :u fOL8Q"~=h~~(\/n?CAFk|Fk|{qp zW k+GӅk+G֗cҼEi1^"4aHNaHZ^JǥxۏnQ"~=8Q"~=ix=+^~/n?CAFk|Fk|{qp zW k+GӅk+G֗cҼEi1^"4aHNaHZ^JǥxۏnQ"~=8Q"~=ix=+^~/n?CAFk|o6[m$Ȅm4ܤ)JQm@NJKEp{Q]ylhYB :Z4v!Jԃ4\8$nLnjCu2^[Ak4-ciViuۗo8EeneatGurWJCj͋]͛;)[<Sff( jmLAIVz$sIjl;hnonTY ZQJ'П^Y$4wvȶy.Rq`܍jZi G2eQ۞!K7[Z]IJivZMJI˲ ҴP3m-jᘯBu/) qKY*H!X ˆbJq eZ,:9PmbiД| V)Ym)IQ)'.k5R,TFfU!$Yd5)DGI$M]zRǍU\{^GxU4x*Gkݡc<$wGzJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRZ\z3߶IVp}$k$W4H\ b[%ͳE&"9i)M#uSIihJQow(3 ! ZCRRv欶9Pt,"tsE3'673 (%ҭ5Z^Ѧ7t(-][iQJNG0֦3 VZ8TBŌedڝfD[eVIuy6S7hkՍ/զ9o{mw2-,JPFGpcIW/&Y.3L1%Fw1@E96t <֐@d8-^I9Gl C3!W&bZ\孤-mZ1v5\i=AogMN|`>:jm|tm7v㦮JoogMN|`>:jm|tm7v㦮JoogMN|`>:jm|tm7v㦮JoogMN|`>:jm|tm7v㦮JoogMN|`>:jm|tm7v㦮JoogMN|`>:jm|tm7v㦮JoogMN|`>:jm|tm7v㦮JoogMN|`>:jm|tm7v㦮JoogMN|`>:jm|tm7v㦮JoogMN|`>:jm|tm7v㦮JoogMN|`>:jm|tm7v㦮JoogMN|`>:jm|tm7v㦮JoogM^%(/-+jw$-1SޮZ\z3߶IR+TPBxkBX\y3#ˏ2Df4_}O8ydʖFUyŋ.W0!jhK؜A!*#nI sH)硫+0,rn/>#nM0#JfFyW.ji.?lS^*$\n_֯fݒ"uLt6k\'ȏ^}a'F@(R5Y@ʽ @^af\hm–ѻ+̂JsBʷ,}U#h#0 š\CynL\٢srCDdQ) Y$ űZm ZP+Zֵ-j9d3*R@3+UA>u'W+؊GՐ;?Ր=|_uz`!2J SCPmJ=F)VA\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;1ύwA)\߃G;䪌73XwA\tt)h7ۋie)$kBgԓU(:+y2zJvu=%SrR:Jrs9%Tr/򤎒/rR^#\##\'ꔮWH)ꛤ/rҹV'/Ǯ\'n|r~zJ[.rA̤RgyJOU(:iJ] fM@ڪ 9 ((I9θAK_ZH=•,1ߥjTjN=^^*4ҝ%ISK-ui iRGb}ܪBNdG|&2,rI :V=z*PZ[A'5l72"kRZw2s&ҷ75M)9]FBsrw\{Kj|4}mJŠB\I)ȒȜ;5$;m"9@\uZw #kFrV]83!YSm R3QӚNXNYk1B/_Ik"[ vem"\a+ VZVD'H8m<׸X"ީBŰ(PNjȅ*m4дވn-:PXꅺX^IZ*Ӗ`I Umo;.Eo˺/-\oU=LԽ#%ejѣPY/VCl+qboʯa ҕ0{e$lNc-~bt $j%)4RnC48!,Ve9[n?C7<?^]6vnɄǥFlF(q:R͙%9: {Uz,i{= [+B;,eals.P)@)@)@)@)@)@)@)@)@)@)@)@)@)@)A&* wٶosӎ h3;[[ s9eVp 6)a^nQ/=NNmyy{@m+ +]-$Ff}ګx=2\R􅔁F; Q!SpK-nDm*(Gml`lR$? [䲐V i$>C<=[ؑ$EìۘrY|#HVΣ}n{Dft;]lD&̂jJC%+Q*삈= ;%;罚t [Vu&ZwM瞞{*=1YZYmxCBM%5aZZ Ӥә*#g2ՠ^uuBJ.ȠVY$@f}nԦS F XQ`"xchl\!JRǚ_OѩY%e%+^[|szcǑL]%.))Q\ Ȕ搞f@ΰaaip.0'2#I)]afJƕJRl'N܆LDpL XP[2#JN[sؤolZ"L\oV{&̋2VwUZCz5j*(%ʶ66LU$OFi+i+Cm$!jJTOQ=Y`Xr!w+$DKqʔTBdG0GΔ$ʺ""TT17&I6μTv<Pe#CD[۝E,ȏ:ѹIV ]ʲp#E>ֻM6 ,Sp#IBR``|1ծ.}Q(8(ie 2nyZs9,{{v`}xo˚<ܘ" Z/ZYqEa?TvYlʂut#^#UL*փ5x*y>w!᫈Rn PC\ؙ` Iy`4mŒq_xA]G`m9-F_}aAa*QҐIjŶ[`vcRl:`? !!JN{3_LjuYzg8 .ŒsOmk!8Q?S ӿzzU;ZKۆb)'.(!Ŕn;^%AY'<_u!ʭլ|7+LWKBRҵ! ZP "|歿6NaGWC;{KD {_}W]NS󻽺k6*Î1! YAI#4' y|}5/'Ff_|?Gi?QԿUԿh2뇺w?CXz}4F}w_|?؍V6cДF|?؍S}|FwǞW~<[~b7EMytUg7C+{.7ET{'bn~eϳn>qGgOfoӽ~|uNRf_|?Gi?QԿUԿh2뇺w?CXz}4F}w_|?؍V6cДF|?؍S}|FwǞW~<[~b7EMytUg7C+{.7ET{'bn~eϳn.N? a|#3'=8Pd2J$O?󲝗殮?ܻjes6[|/MW|[ߊ  iOV.T\phZ+o#{My7恖s{m_~9nO~(.hSO})[m?|o/BMUyMPm~[ަ#PijHF6-ST+_Dɠԓ i=+_D©V,Ocs$CXmؾ5]yl_~(22O)>V>[7Qry7G)zk|p7ߴz [3P#έ}=?M=oiܿ^4GGV7~5Cql?z Cŧ#j'O5S|~Y&#RO&t9xZdO|+2hRTb1NG#qI׉)R>A#X}S3Vanjq /,2΃}'b4%mӞ5%i=6Cia;kuY~JϹYHxqǺR #H_z7,LS+8J$PGgZ]bx 7̂q'K-dA*sb j,oazKғ {! YZZ}HVt4*STrKuڮŬ/vk /"Lb-i)B06%:{.$ 6n|a1*:%IB)FӖI[>uO l]nLEf-DwpՆSN6"k"[H*>uOPa⯣m2^ Z]#KRU9<%+tu9!K%MSikҤI9 0Hڌ霢9%YeԢʏl ]~k %Y|z[.w+M`^)lLJA?PV۩y;^n Y5A[z ]M:7 J ]M:7 J iNa ^Asoŧ~-;ǚq櫯\\߹[Jץ%Yg,ׁy~$bYR I.%*JNВjl9Py}wۏ58mW &ܐ-2! mh+ '4IrʭOji.J3[]DEuvYz<>;ǚq欙lTd)AdM-gH9'o9 #۾Hc-!@s89?n<}wۏ5^^!!̜Bո9 _+:rF^z  !,6PK`r>Pa>;ǚqM_K.ȏua13Ts^ )Gk٧>>_7xfnZK+k-Zz΃9?n<7hRR) Jl)*"oFZAh爌Ng]$gvfcQ:߂bM(Iam?=_ALQ+A$ի=jz4ɏiUs6[HvS/z=*u']>j:n7sߏ~u\C?EUMtnXN{SѺnmzudrNYrVf;vcHqȈʝ$!+q!%D@̌ 8mlҖ-SW1i'tA$ØʳmO2g^x).!!Do[sրSkK}LGϻ"މW+JH[j I[ZD#^īMܲd[=Omqd?f IBs9 $lMf8.ڭPRxdljJ}cHJ-%& jD7u. ZB%$({@Efm.=!̐f`)u ځ'!˶F|x[Í5 Nzrg{R҄ʳgi?k Df{hHq]pB=N;oht]cnMw2wCߦ{7AߠsqRU셟_F Y5A[z)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J)J S?{ UdoL-)=ڿ|˯$"Z?ǴjyAsS͑.jݮdKqdLTpҜ{l Cl@u {݂kk^@D{[C?EU~Js!(9} /s5k>,C-mdAhSRBFgV@~Js!(9Mq,LSc ,>P`Ve RH" e[ւ~Js!(9}u_e/9)j̝GLh6^yՄ!$f)G`I=1:3uJ ie)XJJҬq@p_e/9)jniџuӮGp4PKK)JT:Vd{E258C/|QNsTuA EG%9VY _c$ ʀM#֥z{timbi*ma@- (Zsԩ*I;E\Zd{DPqn1&\S1~(> ?&+oZk R R R R R R R R R R R R R R R R R R R R~(j`AjH* ^: gv\Gn2v-rEe)OhL9%Y-Uhimȉ;B]Zij1o=G.r%n FB~N{62?mm KҒZ=GYuڹ{S)8,[6W>WmbKd0 ĥ%Ey5 b8lsr7WXҠ;FnXR:٘צXXbKC!{:Jp$ѯA-Nٝix'Nc/S/76Vѭ[9;U?] 7kġ3K#=*ԃdu c=~SmMJmW]ST*{N!\OoB˸1qT7\Jg>RcWFF.a3vɉEUmm7FUJN+s]p=xO[w|\'%H6-IF vBL/l됸PTLC HɡM'tR7'$1m1 '˘V|!9aa %RFNRr!Yl We?l`.)9.F .12[m,I#-[Q!B:Lf7g$IVwGhh+i4l϶I!\Kݮy ]%D+ۊ^SHCAú}~Bnؖ?&lUۭw̐Ć\[vȊZ!#"R .K\NFBX-7VXC;˕dJzMl_5o7US(`4 Ock>f#~P1% iFn6[VJdnL.$ z=|CrŷvZض%3Rd4ސ۪(RT`!W@Ƿ^8_ 6+1RGi..,ʹ3[9.Jh.!*pr#_gLOÖ棰 D.+JX@#1pFs5Tu;ai菵 sz$XZ\}8de*RJil2|˹Rw/U(> ?&+oQ'pe-iiip0 2[=;93Xws}xz VFhC>Ѽx=77ϥ`oo!M;93Xws}xz VFhC>Ѽx=77ϥ`oo!M;93Xws}xz VFhC>Ѽx=77ϥ`oo!M;93Xws}xz VFhC>Ѽx=77ϥ`oo!M;93Xws}xz VFhC>Ѽx=77ϥ`oo!M;92~(jCV:d>ICJs@Yԭ9qVE͇qsRHs^i3B2*rBs̞A5:uDzd0 M-NvNrU[&*SQ߃e;BF?s?eP]EXT_rS~Js7Z_rS~Js7Z_rS~JsC.SPҖ R"$Jg5n-(95OwZn-(9ԬI! dPizԢ2] u+ZV!i JD[s}OxFRZd6,S-"Җu&%F "l1ZFR(fuՊ&p7k RFE$#VmOL<Xm &u)Ii;!+A\'DEa\U`V6mٲa)}|n3>.#fDTH #>g6΃o?=z9x4آ<^&3#xAavMļ/竑mGdFG/kZN յ6FxrVI] o/sP(L4C\m8gW㸗%<] {mt/{Jmrb= "?/J圼F?E_S..~q$pmt-jE d&_tcVL6SV!?/"e>U+-F\JNnCmCle*#1 ܺK6|6f$?/穛]p0=k y{;|[]%Oz|AQz C󜿞aq/*Kxn~^k/Nڇ)E#ٰڎɘ]_W_a3+sԭFxUnn,k߻koP(&_^U[L6FxRx{ko+% {mt/O69J*͆Rvcgr/ 09 ]_Swف`vIVTI 3p> P(v<6S!9=b?h!Gn${I=NStp#O~ߘը`{nmtyJş 왉K)vL4$=_Rf&Y{IY+8F\mt/Nڇ)@h:ļ/m_DG/JN{J {?*g7 9|B"u DpR3Z0֯q/*KvGc]%bOE!*#7 y|Bv9J4œ 핈Oԫ6JH/穣77P]%[~sdF?յSp蝵R5hd&B}wI=f"dž~5yN_RFŵVP9.^]%'7 ӡPWdq(z͆vLdzz?-娔[[?y^dgg/mt?{ڇ)Eݲa&V"/#i:ļ/n(ek߻kEI|ԛoŵTFnCmCm_DM_TfHpL#}%LJ&`kCh);P.w1e}'BAܦ!:P+,ҥm_~r}L0BS9ўyzZ0rx5mڢy.)8s NC06+9[dԧ1a+ 0)cjqܦlG{WOo+]f2㔭.Y\baњ}:_`!#K9 [mտ:_{:q(=Tuo'M5/0Y9p+/HU_~u_Cd/n̓z\u񍤩!I* nwqS8.z΍Net̉R8=Glmّu_Wxܯ[ K[+Rd,i|6i ԕۯx پ+^ʾW:o%vsQ)JGd $k_Wxܯ[ K[+Rd,i|6i ԕۯxO6э7d^Y1O#uHVKJu κOU~oȘo2]prUCڥJV E *̀kޮ|k;o$jK7WKѝDtN5;]_t]:!MoE6l#H$Ja1ȸ `Y i&_Wk_==ZS!#2IAJo<$w4CˏCaڔO;ksV@#oU{ * m Ov9ֿ"5e 4Pc ub{Uor?t9 }̸mXibir$8RJC1DR Tg,!ZAE917Y_J8xg 1%ù3qG\]͹Ww߿EU]#u?Gq-4yY x5I Mh{60h󒦽RА3RRA?W~+n3EɺځSq>Fӗi;>da15Q3;Dʪ&}fvgO[ܡ'p =%F3Fų,#V\5!**i[i E5Ьٜ'[aửWS%[؄)=+uMSȔ{oD淹BOIN5zJmvI.ڋ+SV3ny;s@Xۑ l!NRl V %Y' -4G$Cs.#Ac{-C'o<{| ;?Pc|lT#mY֧JFJ;p+Pڇ \)owbFYƉiiU50DXB}E!Jڡ4o_k! @[vRn2?`kMkv|?cI.Q]QGw͕mxb+s6Hи-"IliPqn٥{Il4la [7 o_ZmA`ci*$mRO 5'VZT4%O:v%̀*u=4u+i;ߠ֟5Tx5x֏ /AO;ƣMWQ֑u4:l~KqԑAaXc;>%)FHti n)V[iB3#1l5\>%ޗq<gKsfG$DJvh)pߺ_58ac/ 6\mӂ7D'bv+X+>qV-&l):[v fә^ac/0wAa5mCr"Vɶ֢:r꒲\# tBIvbP k[ ~|iۼ[Ę Gt) m|(3wwD9ꅼ#s7Cu~<]z=r) CO¼Oy>_?jj5]__ޟ9wWGƚ #?_Plyricue-4.0.12/help/C/figures/docs-wizard-intro.jpg0000664000000000000000000005423713053456656017031 0ustar JFIFHHC  !"$"$C/" g  !1"AQSes24Taq#BFRV $35CDUbr&8Wdt%'u:!12AQaq"45BRSrb ?Rh/q[yRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE(菔=ONCtRC菔=OAE|v+~|u@RQu(?߿$D@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDE=V_,phiTI+{Ww)k2ou8d^/ؖ۶l)?j1KH1r| / ˲T{+gvɣk모&dy㋈!Y`k][5ݯ]ZnOOWqL oo|XM""/m-f;ֽi**_e+!,-`ANxp^@DDD@DDD@DDD@DDs]s@RQu(?߿$D@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDDAug>mowy ??zn:{"rsQTznItִ̞\Idg8]$Vj:_czn׍e_OrDޮmK3>V!%VtuFm*ÌnղNt30gQ]4VFU#&UWfvGcGM2HtK:]%މiZݺI\o"PZ]5&*6WB\0Jǘg]fuӶrл6 uRE˵%;ۤ d;\>nZnݨIf||e1v߶maW􆞄̉E#Kw w\]X*5suhV{ $t2xIpqll_Y(ue}ɠy7v; ]mº>:ҋ|p;-X5[M fqk)ݎ u )?rzWj V7 G||y;w8wy*C)PMONotT`Y?FȃAꭶm}K6͝3%AŲdGuFյ޶+ΡXA%A)ydwc{ Fub𤉯qYH5֒MTiSn ]C`2<8998`Gϫ JiTkuO<q8wPUmmm1zlIGY_WTp\Dsdc g_ -==;#SP}9d?";)hka9"kqATꍤKa[wED)jid{ќpr0o=SUkt\>=ڢ8t2'i.q \[{*椧k3L֗G4$jcg^>6ꊷ92X]$V5M}6yٍ~uwCDt`+# 6g`491o!$vmSgmK"3 = I{;[;z{] aGʮͶǫI ^KIw.;9hD1W:[7 m ჺxFNH uك]Unm5nsd}408Gr;64ĭ4ObQ[gass\y'z3B n5.ܶ)E7^t&dw-k8'{9ΎV[ڒQۮ06xFx#A EnA_4ZiDXIȹ!8v23=zOY荐to[ 97At3 ErEr)F_(h J" """ """ """ """ """ """ """ """ """ """ {$4Lv쌏u),8|d¼OkԳ.O2[kHN<{XF+֜4i%G;^cx :*kY31}zŲZڭ:#)@ٚ9{\1o:OZ)om,CE*&i p%=As[jՑi|30 \?%y+aSٮ;+ӗZUe:2ipyg%xWVo>CK]K'&|p vO,zihJhuLgpI`X6yuiu{Yk}4q:]ָ[$Ak%`9miȚ /"A-Ynݘ[5-Gڮu]M]n\%{k[rF^vbw ^[zF d~,MRk%ck[(orTp6qqc@.$J=v3mzŧtM.Ͷ]p7EvxdдM{ zVv=J cq`ue lGtg<<nE4֣ct{G8oɾޟӺNӺOح^ri#C vٽf6#W%mU8"V61-\@և@`o cz]m"p7wxdM{ q8d%Z[Lj@#`}ߓ| Ge-c(p{Uߥ#zQ{uqĐt͗Zj* ](&D^Hs ߑDݰXlZ~lM;LTT,Mk{Q\'ik lI`'m՚VمRh-55GO>'rG85Gvvqj6.[!UEG5=J6f ؉{"'y w.c~,M]=I4^ev~WBO_mFCCrud wP*v=5*ɪ-ձ0C;ov$co*OKVi[foKeWSWE%< ^A<tވzjsHi5\_=yA,.cA-ZqՐ< 4g*oam[lR}Evީ%*9 ~R(Ho l7}H']!|/ճN> tVϩ:Cx_gԂz[> ~R (Ho l7}H']!|/ճN> tVϩ:Cx_gԂz[> ~R (Ho l7}H']!|/ճN> tVϩ:Cx_gԂz[> ~R (Ho l7}H']!|/ճN> tVϩ:Cx_gԂz[> ~R (Ho l7}H']!|/ճN> tVϩ:Cx_gԂz[> ~R (Ho l7}H']!|/ճN> tVϩ:Cx_gԂz[> ~R (Ho l7}H']!|/ճN> tVϩ:Cx_gԂz[> ~R s[ECty8㼴^3ѯ_W{*z7+u6lݕ˄³Ņ-.ϮIV;UƊFTfoJ//*x2 ~噦\5yb'6X}_?觬?GQ;gڷJWޥ_9UJj4r3&p\7R-Y('\p:gSsR9:tq_k{;>bqǔc9H%=r[(|`Jˆx۱,bӫ|ͪTa7<暴ti#q]݉Y>mR&Tf~kt""" """ """ """ """ """ """ """ """ """ """ """ """ """ ڭ?H}C=j*CgʿRIvRsWmas*7 g"0a0wuekPOBf0ij[Ӽ0hjisGe3HUU,cCx ñ-v;KwuMJŸ^F7Ú\8X˵]ƥlqWMͲyUOH#K|%|.sNKOI$zWbŧUR:}ξZ!Tȼ2tn-$A-$d+˱XbӪͩ[+ڪvb|3y\hdo|GU[j0~URC=Su[xgT^~co R8L,L+7(XL,L&F~}SJU3ɝvj29; 8\Tt?:~vt޳lñ-#oT%Sr*xk@7q:knU"e¢Nd&'nN+\8WV(M]iYO.r{:RʸeSj\](H&$Oz,ZuW*CtP`Ixb]Bù.$uv. ZuO+yWDzrM=:uHmVڇz[UP163?W:%z?Ks6lݕ-.n7([dgTXtLR>5C0A%G+Kml&VY%٢ [e" ksefbSI Zvݵ1ӖqQ+ʛʺ[$RU*欨t^㔑 `|@+bӪ|ͩUWJZX"8cE\5p{-:ڕꦭ4"i:XS[Hāo|GU[j0~USc=Sq*@g??T>co S{XSue]M/WkRQvQ@)V1WrV}Y55ci5 vWIͶŪu}Il|ipỏN5)i^&JȄZ ˣCpwqix{nř$O}5.-1>3w*i?~u4S]9g>13ˣ"zO]WHc8kյpVG%DfGxpW'c8ŧSR\;V*m\Nd/ܻ=u®ƱN_6nw8q8h׭=XSZԁo|GU[j0~UT]=Qn(g_?T>ao TL/&i ~KmW_٦nV9f^gC K fl^4[kƤ<rF̆H>5pMTU_ɕ=VGc*3pлDUD[#PduN U,iwe?,d \w U4~%택]œ5X3kWAZ["Bj)qFsZr2K玧rZOwz$d|:9|r>9#7Fk-pp 2WOcpŧSy/Rڗ.KswWܪD[144@x q_?Ejxbǿ1ImVڇz[UPM 3?Vʪ; {Gkq~ao T0V-z%k#ڸ,OkۇBңJemfOLjy9 q=[VM\ݧ(eNs"k~x˨P9{Zeq;u#]-[T=jMo$o&8-|ឱ6ҶG$Л*?uTӗ~:R+:\n`\C5j:+uQ~i*zzJ}St54r:<=xg𫋱bө<ͨT>Y穨yjg@${C@h˜N+bө<ͨ]#j.wN~9Yo|GU[j0~UU{'VEVgZl[vUNnL+'({a0Su&(@dksՒ0pβ\s\qGc>1 Tڋn 8rӤL"|ov=Zu *hIK'uP{-:څ\,DUPwyfkneCkc3 3ߞE;]&GY b.>]7 ;dSAni~8 |8@E[v\iVXy;&sTF^-sz;rQUW{*h.{rֻ֞<:(-4Xie*zx_$5h$|kuSQI[`S\i솼pdXkjKG=TCv<dVڗU--7KAM[TN׶]7D Z@x& H';E;$=$QHe%w#w8^5Mi۴RQSj:Z G%nc\7]$b =4Z|uu nӷ z% Ppdc2fMpBZN /= wC#mY*rtHbQ;K# \Gq_ntlo;-n?[vK5Fa7o5#  E4Cis8Oƿ%If6Dg'0dEZéiz+bJiCׁ>"O}}o<8q>s5\4^QG)*) XZpx-ܪ;;wjui$- ߑ4I=\HQkUW UK>$%k]&˷A8|n{$a.,M3SG]{ĀщAN .ESi-$WK%4p$̀FNd+H@^MW%ځ"WT2787 "VjRv}ETs,|I缻SK1&`=h>`a}MT49.@ㆎ=HWME ihnOlX f[ժ_`jv ] I+=o7U0z*ѭU5Q5F'*Eg~nYTM9)UQgL~yk4H.kK^~ 1i>~*SQh\o F@:8p g5 t)SϜ)MT"fyy{"".""" ջ>Y[,o_)kI hRZ'i:D$YlnrMW 4o1|mv8W èuǴ%ުXi:3O#F9kw_:n[ۃ8l(uU (xղMoK)i'y-^DAVt54}}KWE4Koi0GU;ܠdl|n^4ڢڪ3Sqa&SIin.9$. nKQjYbqXROKn5.FCz¾4,UPh 5͕qi8CsDҟQkFqu쯥Zޡ֦7}{z3BqAISCZIO\]Ѵ{M(nwf8\*j!ޗms]p1 Q6Mbo:O*u\QvHZ&7pܯA """ "" {PZj>`#֪63Yjpj?0e,&L&DŽɄ$F<7]ެq 81=S HbytެX_nՖ@x nQEɞULN3c6mpUjv6b#45c#>=|oB7Z8c+` ^څK( 87reUѰv[d(^.3wgEQM^O9™U5_g13+ DDD@\V5eNESk-%!6sg_=itn` ~rYq,U]vMzSmݠSbuKau̬V;BӻK5tTW'kU-DpF:Za,  "{ ݆ x8UHk z*;_kpUFGddˋr8,=kwԚz[M󺭛X vAs2 Yj~uTU5UU fFG2I$ȻT2 x;198 Vs6箳[ (. , RH㩽A8!:ov}m [tm1Hp>6?qZjڊrc4v/ܷ$+hz[(S-.AݒF@/ié@>j:iڊJz(j4sۮ{Z H|]#%}Bܢek"2Tg<5'$V:iuZ/fKĒp̎Bu! g< D=Mmvd8S\Ǫ-fpd8'p 9fZI<)lqa7K *DZbNuZs s7e ;a@ў  ɬ6s lA*H6vT1">@679ڮתbuKC?!SOYL&š>UanKuN x(- Mj (,-rﺊq;ї$auvhPYiS[mѐѓ ~k5E}GLVJZU5T7kM>zTQZOB袂M׊7@\ttS::y7VZvH LJH&a8<8'=ZUZ,竫y>R@3^; /3Psu5K}Ǜnw;`d<uu>j7^[_5u4tZHyk eFֿõ[a⊢/dd+`y==s]PjsquttWR h}\QҰэZ2^ZUeݣڝU -~׵Q)ty];1 c6}-ݪfԖ UMY2ʰܹ"xNԴoGsɼ,FF I8!Beځ8`*[脬kf흧.8<ɫMꢏ]:8iط9(RjAr+1 R4Ŏn]T+suxp Q}~NZR6mF2#{yn*Gh[-7?IgTN cs1wHG$0=lFg>u_`Spvs8x' -~ٝlWR`3q*d-~ٝlWR`3q*dj>`#֪ڭ?Hݱߠ%_go,.we]0rŅwֺ5:I:yLܞ##P9;%MU5MTU7g.ղ\nh2SX~OZ}aSYo %9n﫽g[V֪}552pn>-h;R둥S%hհ͑ᕪjS\_:Dty2+cLM.< W~-7?IgT5tr2 Όnna9=ߺ41iyO:v?;Л""DD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDUVo|GTk? zYgAm/K @7SudMb"ɺ*]x7+IS)|n.0dܜupY/:\ =ivh4'}nw ZrZ[InN2#w,ڦsMuQVFau!hF+⊧j-KZ(8Avxb{6uV]-9C ;cIsHWd#ߟLӡwИ"RDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDUVo|GTڰk rRwAm/K A0Y7SuXxL,.rtW*Z١`XƼ`q$/lRꚘ۬;Q|Y? 'V}KmeC)Z**$'9{ݼT{]uM9V*:u=9iUn]<8='5DxGOs"רoZ"-Y5Lkޒ6wRwk*ctfQÔKp Zo>~Ϋ-$vj*9wLSNFZ?"^1iyo23uQ>B".(DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDDA[j0~UmVڇz@P ~(y?Em?[K CSudM`[닭;Ĵ|76wwDŽ֢I$ޑyZz˥5i|nU*C Kn5S_:s>^L?M7j4⚢#uǽ,{| M}z}WMcPe9٭vK%xnC.8/?d+4Mˇ?߇އ%QX)bw6e S Zn~̭7=>o "*(DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDDA[j0~UmVڇz@P\(픔UUN(n()Ttq"~GQ>5?l~88L3=cy<߯,8ֿn_==F{J1tm.#Guio+jE5G?O8^{g^nZzuZ&<'+ -FԺg4򁡠N U"w]WMZ^akA]:f8:|+zh z: gk~S]J`FC,/8kI? mղbS9DŽn;k,_ )+)o'q3gWۖ[4E5DbiG?>^mq֪yTc:LIaY;OhTRc5a|蝌#[v'pz Yu-ۥWCPt{]ZGvm]@}T3vM竀8ᜭevQM(梚bc E>mVڇz[UPc] ?EIk[?EmvOQ;`z{ymAZ~Ne]g*>v[w&tIQW=?%]L{-wVE<5:X{AlU-GQx31 }jf\q<EӰ-Tvu9cUy5Vs0Li> 3{ӗ{9&ܐ>%rfci:yOso|ۚ'U3I_c-7O?OfT+Z=s!{Gޟ8 bt6em[EZ3q'1Me'cctvrB" """ """ """ """ """ """ """ """ """ """ """ """ """ "" {PZj>`#֪Ӹ'r|m/!K7Հsn"+܋uɈĹ X()*ՋҏqyT X()*Ջҏq;*\sk l$jOW]ۮ$J@2jM5GSܪL]Z uE܋UԬknK!D?(EXLSMS{.SwYrkL㧣kO)}*?i92ң/0RT~s e/G-TA'񔾕KQKUms e/G'0RT~D\KQI'񔾕Q0RT~s e/G-TA'񔾕KQKUms e/G'0RT~D\KQI'񔾕Q0RT~s e/G-TA'񔾕KQKUms e/G'0RT~D\KQI'񔾕Q0RT~s e/G-TA'񔾕KQKUms e/G'0RT~D\KQI'񔾕Q0RT~s e/G-TA'񔾕KQKUms e/G'0RT~D\KQI'񔾕Q0RT~s e/G-TA'񔾕KQKUms e/G'0RT~D\KQI'񔾕Q0RT~s e/G-TA'񔾕KQKUms e/G'0RT~D\KQI'񔾕QŻD_HvÀ<2 D-DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDYS3'VT"84` 8<+ikZ߹>JAZo~} >?ܴ߬AEG5eT( JִdAn3[Ec*p;>Nku6Es~ͭ-ܹ5E>8,zrޛ7Whuޛ7TPAm u+klPe[ /s8n;-]<}, 8d;{ kSnQ9lݾݻsLW>SG:iM)cA:ZuwK:U׆8ux2ٯxjI5ނ:'F .<;գìo\u4jDZܛ_qF0 ;}Q@_4/QuZ5Y(⪬lbYL㉄8x+4N:aDtQyj}v\x3~>=PiN*K]Y-= ED0ycdM<^@$4|J_}mO5*C<`?~I|*=U5Es>&_4X=:دk:*A55w-KrlQ۩Q3`hs֎@'!rn_,׭tVMb|nosps `ߐ:_Ӫ?`;ENخKP-94U1nCMS-Mm<ԗ#Vt`q8"Ӯ 3|Kn1Fd <4g!vήӮۭ^殹BA!&Lw#sx*=e7ݛQ{-4U aϚ9x0upAp@ʨ䖹-p8 `Ҥx#U" """ """ """ """ """ """ """ """ """ """ "">{Hd㇞ugXS&O D蝎H^H۴[\2~9.W'{pE45tF$f:9z0GUصX][PڻlF_m%Rdo5{,˖($}Җ (8AvdfF789m{"+vn,4&g3ҟsr-VlۗT *xO-,N; *mS[+uuf.R],3O#\KevIPK[,#1[{f !Jw@gg˂ٸw56Ϯ~{Ts]CK.u$.M8xۆcu&ڌQ@=-duȡmŘ~L7qŏݓt8 zה nӚw摑MSu!` hH[*ӑk ֵ& xK P4z_V.i ARơ/Pm1Ss] wb08ŏ ^n^kKעrZGF3[%F s^?/sݮuQ39vz˴fffK ױT+{]K-JDuaպ^OY _jJ{ksUJj cdQ5<99nnd}TpɻZi "s^ޮ!ki/m:,Em$M+-vVI5mqg1SzfvoYp :GEpmICDGGɍ3ki %B\jQ[зmCݎ&5~ x8_. %JjFmCRRPjjsa|k'fIh/IrKtnQT^fVxaX"qT;v K3׭iB ge:TUX-S UM=+jAޚ-kI0ē=_{-U3jRj ~skl2A5]з2x2K|..vOIeXAяߧw5=w{C{5 " """ """ """ """ """ """ """ """ """ """ ""h*f69rF;88su:֟q~ee}_ 4u/}~)=ikWz/l G]GKGXs;KG[胖Rx?Xd7:\UD%衙Z9Yц`"]:{ӯ6fArIdJmwoIPYk:Mk vbXN89z^%LX;V5ׁq$g^6c'*pq?]ݺ + " %' {+R j1$7aZK7O[g1Vf c*Ot|P0;$Y0T$J(<jq0c*OI?տƘ2jڀ4ܩ҃]jW.>Ix䯜s΢K^R;Tԅ F:ϯZ2eͧ)Id?TV_Áؚ̹tf7I,=c8Ŝ<6Ss%[\}+Xd1'm>;O۩r%+> eOh#d0Lzv q}>)H7ǀB(Qt#Zl7ٖ 9V?ƀ<#Mgϵl[jRY[)aKע@ujqH~ڶB "@sԓ֬m8"kI F ^Ey3Y\I X,` 鞝߶c ?*>ǵ(ϥz>TVy;(!SKPڜۯj(((((h(dMPڌ[: ( ( ( ( (8E9Z(Wu%2/B@Q@Q@Q@Q@Q@/Z*GCjJdcԃQEQEQEQEQEsl1Lpw֊ӿU0:b((((( ?Z*Gz=-W;b>b ( ( ( ( ())t. ݫUWNvPEPEPEPEPEP!-+:y'?feb ( ( ( ( (N?Ίe_:Nx@3zlzsF1dF+\ q-vii ӼtԹ~vr[ *88XvKJbpU-bTdC}ǽ :hC8Tl~=6S-ƛ-z} fpx_m5[Y϶zTl~cc;"ݲ9e{<bz DžxQmrTh,&ǟ'??Ɗ9?G)!EӟSIo~( 7AM.Pߠ{Q@ 3S>6~EP}oR?EIg$sEPC  !"$"$Cv>T !1AQ"aq24STUs#$BCRbcr%35DEt&d'!1A"2Qa3 ?JMwd̆((1;a6|gXu&֖=0ͫ/:|aA+ClނжAwm{fTj ԭ`veA|26SZ<gw6qY-R Σ֏>Dj&4N?>D=4_KY{ePE-AE{G" ޢϑ}^ִ ֣<|?k<ZoZ> v;_oAo~{=5_kރ4P [PD7E>ۅืADaaF!3ٲH4eFq!0ǟ(6 y!;o7P\ ؄O4X0PjIjӷ)(eUS6|uϨ445kV[%ԳO\()7!>e/p k<&qXWQneCgUhRBὟb绉k|'8R W*+c"F6q&qYڮߪuF$y5;@veX,ti+з:GuF08x .kaFIwٚZ%ӵT'5STD Oc`820g(=r N GgAFFPis'' GAQ;g j (+B ׍vڂrZݙI)Xv<7#~#N|䦴4AT O(|h-!0;UW(@ (3F ͒xgt{6N,p {f[z%GebӉᵲtKS[;*5;3ALƼ6xJI!q.s@XM;O j+29'1;#ȈI]vp\.7[nSTFS2.  ܺ$\tFSK 3u&:HC#yh.9A.Қ`صa}=ώc Y;[A?j m4ehٲqpA̭АA;#hp@q\ڈ >D.Vv4bVlcgb;r/e;plmݜZU9v5m4W9vĭc<~6,nXZ"d`8LFԊfb<f&# +d J @ύ* ]#Aqr{S -8u5TbH&d$8 <>p@~]mk]PVv]'(8i 5\[*jLbȆ-qnrH$A'i'N>Jjk$ hsIĸ ۣ]yOmk햊ʡu2"a{@Fx=-4姁 ^QO\HAra ./T0l ȋ% AVJf*ێ7vqA!60WbgK |KbU>1nGC7Kti%5ڂ QCT%-,َYrp2 i+V߯Fr;bmo89$I*F]p=7N9C O39fԲ3zxѳ^l4:V(G@s(#/`t5zt AZt]M&Gb-1HK.Ӊ㖠UѨ-65foTڙ,ceKksf9'8]-^Ѭl&W_KH%HNԙ g2F0py#Ht5毶TXe#LlMRswL]qʭOijR(%2)f~$ -?;<3 Zz3TZ֫UUORةfڦsI-TY#_H [?E:VWg 3u۪F?hluTU,,>0>< y䂝Ejq4c&N< Vt\ރ6smFD10rɣPphˆj;m}Vvx499<8A]#VuE\(%Xmӽc1AeOI7U vYtWۦM> 6#Y o(jU&50kƺO 6=pymdc$k+)k-SQn*hj]6oݱў`sJ&]b'oRҽA4gm;9hT;tz4wqRYCw[U.=babinxY_Vw5-``ッ|rT_3'ӚRaRM5s䠧c_a){ gq!0j=1fz- XHϳ \q 5o8R _ch'sk+"AxNvapAvqѶI41^C[ cZv ci;*(-uF70; .kFOb .fig~QRj&+NscăVQs9( ƀrAPD])A1`edX2| ѕ rh1< MGރ ZGe0i,UU[mJ*z푺miِAfWk:UF% tt%:,s-8Pi~b5eEDuqѾ6i1׸c`4҃{Ghl7T]Q;IXQ3ݷ~@ +DvwW܄Lem(*(Yhpqy#GWѾz[OFl̏!O80#|syB:Fʹt}McmJ@8y=sҵQN}]=UEjF98:6F"n0$NNC^u=TuEBڈ)oSkknvlS;lF` w<:LR:j[\Rk_fO&DCtdnYRԆDZ]-;yȠrb^-ۺ=;14s8-ppt{y|(<om94so3YjlV0켸ᄞ]U=Q x(9Z5A_Tfɗ18 i r =)/W J;֒Sa5&mERLxFly `E.}(ϭEEt{ TnXlkð2HUFK%|osNAdcŌ  PW'8(=x+6? 'pSP@k4e>]۵-Zmn811ӏxݠAiA׻PReXtݞ.K֧!QTϻ$Juƫ@j{eEkEm5S^'|UFelľM8 ߼tano%RHC]Ml |q8cG,}xUK7VY#PWM4S hv$cKvqRtsRJڛ-ۭm-ؖh7iozʺtZ/FWf,U%' k{VT^5Q-p9ΈD9t$. À ܛA L]E]g/(7o!|n\|&88CKFEuu`|f9> $h-M۶H$ 8c(Llqk@ 1N.@@@@@@@@@@@@@@@@@@@@@@@@@A?Pz\5/f"o8yj@˴fӊam;Dcx\氻.q,Pm |>@pp@ozӗz>vKMg޵d5 =2x`?jB\PzG):+'t2])cA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Aqpgkw7? v J _H;ySxkn=A*A6;DS ݵrw{VGȂccݻA#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A凁" 7 qwTsTX2@ۃLǠ T ׬r  Cy|,3 h8 [i2W TH15 /rlH档;9AӲ'`.A"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ARpAV>&X'(#U٫o" zt'F2>(9:L|G" eMFģB i_4~G" AO}}&<' $&/j}}&փ蘂u=v}oȂ^N?ZbCң{~D+w`e[oVX{}t}oȂZȯL1{MA2޺oA+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A,J4K}G" RȯOpf!&%((PyL蘂qǾA'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A䗸ZgAMA7ӣG̑,?PLl}o͑]蚂gcn'A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APˮ޺aׇ蚂kgߘ"2FѵrJ>cv;>2n1 >>2Q%lZ(̒Gxq.P[ZIWH|P$SxdR+k%# .p? @c(}|ewn1 >>2P7pʋѻUCwn1 >>2SK p@Dm)(Y,'HdNUşR<ĩ10n?x+ǿl{]=JccDGP7Pcq@Ac(=Owȩ`>g蘂ia8=I ܎tNƲy$<pq+ɽ–nDcP]9[UņGŅ8h3=˵׭̹v<ݻzyXä1䳆yxf8o 9?ZQ4STtzo-E_̨zS=S/}3M"6F׼#b3vq%x/~׏?cݱoԽz-̂ طZ,/oP7 3L5՝ZzuX²7Ncjb7zwU]u,IY# miqyp$qq<<]S/!W&Mji`50JgQ4DZýV IlyxO}hik.UR;Nx`y{K#"iշքO,QMwkRܻdn!⚂eNNx'շr g r{Xq}6AJ&gnsf|Xkfv*گPWx Z Z>Tk !MA7W~G B q]Az=klu2 l.2ZH_3mm<#:(( =;&K}xWE1X69 {Pr:+Iuq )k,fw:X^v)M$8Ŭ->QEm:VAY0vڒѻc kn #O_o=K[Q=ʨipk\${c`$AO<4it5w%}DQ-\Nɂ̜0yjwjkVP,-⪥~΂&E],;$`A `|]>{ԷƼ֚nPoLUGcdf7% ݵˋIFVO:{Et[[W5IU==^6I$9kA1 {O2`AN8AMǕ(-yP:pxHA~N8 x4n@w|@c@qY矅A`r@Y@q 3'=ANfP؂ x nv>nGh  7*!A]t;BN>:xA-dpփZ($rhd-} hdFhS}Ƞ:܊ ܊:܊ٟ ܊ٟ:܊ٟ ܊ٟ}ȠւRM~4IւM~[w4>a:܊0h)խPyP[Ƞ]ukk{k[ȡ]E7r(<}h)"wւr(~'}h-0=7tPi2(=ɡ_Wrh|r(|܊5i܊5i ETyH(]o"AF6EAmdbm#@lyricue-4.0.12/help/C/figures/docs-wizard-confirm.jpg0000664000000000000000000005411613053456656017327 0ustar JFIFHHC  !"$"$Cy" ]  !1AS"QTaq24#s $35BRVdrt&6CDFbc%7u'Ee7!124AQrq"a#$BRS ?J6[QP Bʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂ʼx3j<wr҂YuvH$h8YF~1R%wџc: " """ """ """ """ """ """ """ """ """ """ """ """ """ ""+}F]Kl/tzQT )Z~[w{ =ci[ߗCCsL-VCEn3H[鑀-vscƑ[}q`}ƽ3Us v -tFz^(!'5{c{ͮ!vޭms =}k*MfMMM-THEKp$Pu\϶]R~NiiU?Do84yG+]Eͩ)5w KlԑOu4 F ⃫"m#HV*.5r|ۭ28899bh[npmd6X0ͮ\<Y?9+ r@خԓ}u% *-y.hå`tov;2ue*fzXRO 467%k˜A-gy~ʹtl^.mKqyǡiK}2N+cxoD<]  p&R@ڲ&˖4f~4fچ'H-ip?氶<.[(2S<3=>ګj}سV~Ǥ1I$Q-B"asqLLBe4~y1 71'<?p\h:F4rˇZ^_:gT]Ω#W}?Gbmm5}K8{c68x DAmEK(|I^QY~^CvI^QY½/E'ëni<++?_xW?V$F= e-u3*aݒxU2@De)LP2@De)LP2@De)LP2@De)LP2@De)LP2@De)LPe[Yh K$c ǖWٮ5]kM+= >ȁFmaH]Ox*,c*ASћ:6gϦ43-=89v=YIigjժ,ԷZL'l5 [  8}%o'AAһ"پ4ۮT L,v7X{Z=E`+dUrT,L$1.q$|o*韕To97mWm3o[E$&87[7F| Ml~-w*[WI3'Vak #WgoI[nu午;^ZC YJ=JWZ]%l_+&lg--s ]"gIRESMl đD񼫡hin6ڛuu;*)j|3Ǵ#A#Y(?-V5uݵ&6n#ʼNz-JVZ]%l_+&lg--ssZȰ[uKx{E%}$fFCODOʃI,n rW}g3@䀾YbcT\ԩy2ڝW*oM筜l\ˠ EG1c CT~N.?`-J*kպ@nVE-U(phi ]ѵldžBᛎ|P:$8xѴŬ>*:Z1ӈ/6 L{Ӎa,nQNΦ 'xh Oy}SOD??jo??jPND'xh'xh??jo??jA;wڛwڡND'xh'xh??jo??jA;wڛwڡND'xh'xh??jo??jA;wڛwڡND'xh'xh??jo??jA;wڛwڡND'xh'xh??jo??jA;wڛwڡND'xh'xh??jo??jA;wڛwڡND'xh'xh??jo??jA;wڛwڡND'xh'xh??jo??jA;wڛwڡND4{76uuWïjuƄw#l2#h< {GU+Z*'wCKVqgZj6yH|RP\A sV =8-sH$Arǔ,;'ObWM\Ǟq 31= S+G*LK=}""DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DD2GY42G@_5}У;MMҫߺgiu?7_Ϧ~w{.ut/]BnEWn3I]jh do 8_6KCX8dvW{3\[DTϾR6C,tN^I Wi,F'}m[蓺C9~r(9{<.%$']V64Λ*mIi>f#Xk${ FZH+羊)'QLʇNH=#VwEw i9_r1)d{WPط T[#{TSDE QdRʳ dʳ v*3uJ=韣˞ yFynC%5tXv(;"dRAyatMjһ@ԖfP Mv8kj6ٷSsS_n9lZOz=nnOk=TMvKZ7乤<[80\;*>V=M-;=m gk4cÎ{Zz?N[oYU\ZϲF6SQ&enU-p]Q&em\v}SOA5DD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDDAK*T\,eK*T\,dy۸j8SE:nc;D]wюeA&nAFyVk7{Z7@O2Vã5tŚ_QTLq/᜴ZY]6. .Tjuij97ZdA娊!a/8˜\I$ICgޝ$oxpͽ<񙏓-yh6*hxʡŭe%7V;͕<sE# fI q4غnm\'^Yl~Iv8g\朽F 9{p{FZp=*uՎq`%2Bl̬_ПLιMݞ""J(R(%)@DDD@DDQA("" """ """ """ """ """ """ """ """ ȥg?2ɥg?2jo9k]puՠݞ3cQz 2ïau+lnŻxI]N M<d4qHTa(yKI<68i{ցO )*y,2G#Zd{AC-PwH6~ %-lTaVX-Dl-`䖁h:Gb\4Vq sK$:Y܎Y=t\TkULknT\ ++䌲xq7Ml_^z]+i*)ߞ 428+\{ WknڪE DfG<7Z?]iv"+ i-=5DAVl}qݞ괙pƵwABVju-GcWQbn@x7 quAW%Cl5籍%< i8 PJڗPY-6fӻ@P:KE\ŭe$22Hy :ҩcGX)57!ENO8cszn=}=m:}/[ޖ(xx僎8[@!ȃ mVеQ2ouimtESss@+^{+-RZ'Jln#26 ^0a $\6=ݮ:\\tbK bӶ2ڗc. ]VΡUJ˾KK 9f & 9vx5ydpZ%}voḑk3@{w^ Rސ%ߨ#]cm57Բqw..ko2VloU!02Hu FdklaTDDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDDAK*T\,eK*T\,dö3]q-:c韣ʕ} } u7W#4"D4*&_׹M,cus]tYG Ld!H*fep8ǂιBu 88TܪfyccldtDZ)jN~sLq0˛9JJ<'*.k_ޮفE" """ ""X[XeF09A#s~Oi|S\Hy2v]f:⬬LPǁƴ4g(.Gܫnz6k}SZ*NGq=Wj2YbӐ rxL<h5e+|;s(ڙq7#^F#!EJ(č4Hc_]Mtm,X p vo}㧤Zp?rWF|f\{l+Eʉ.toc, pk29eqPmc83Ć47'qKǷuk7##?bWz; q2tlv `v+Bi\ot=!8_ÁWt&.-/s#cKh=|\<# H oEW<5]=ۛ@7wN]㽌, Q:-uu6GY&lrE4D6FgA]O!Ί7cT8̂WF#Ay炱lbA_4L`wAۯv[ۨR픗c ip'=Eqq>3e~$c% 9hsHxT6lYEi j!⪅s:H9-cN3w^ye$dnJ :xclg1q8R07$n$'ШQgϧ:PŸȇ8bzOie5ڷvkDpfW;}7xxq<l㮨51) O JB2'Av9cI[Uw+QmYASIrKt]+@&T֔:pSۮTsQE3~93Ia;8>t2DKC\8`~GѱvF2{I*AC#[wIqi"e#l.o9$Hxnp6bi9 h{36]UWX8!u;+onx`([-y}]0Q%3p$ۯox EJZc\n1 $*Εqh{TV:K@/P58.hAQWngQGytRN)7H84&@.88x-|;Hrܬ];jo{)⹲> $tUFq]#$DND# gڦeڇ6Ѳjqt䈚$=1v0A~EdUpIkI&ld9c rسPJ.uO=,{0R5 )Ha|nό!3حZCQA](t43?ְs' yAO*Z͢VW"d4TG wNxd[lvEo2~ډi:q!!v K{pTtn 8:Jr~L.!H=P)tҐH`.'gό3܎ m$|=+\L>޶-]_5WV2OG f t#d͵/x*eQS:{nCFA D2ܞYcGP[T3[]#k" .l.a't2X8ddqAfPږnӖޣM&q,9HvmOUOlЈGа9Ĺgу3O,YI]+{c*I\eN7;u,ꭤͶItj:DU[)7 L#&45vY-iaKc!2F洞x[#jg(!̏p (R2)~eY녌i~eY녌G7x~=hgZ^ʝMBDE#<} ]pASP4ź9j"ܦPYKH$tϵiv_Uqwjk?M"ci.8ʯd $<xYGxz] BFŻptmkjGFX(쑶 oqcHEAhrAEG7娝۬`2OzPSWRCYE8h:Cl3ޮ /D-%laH >p X]cPRTs*Z~a<dpNӷ;|h';=ep!ÆʫwMw^m_S崇@N䆴6Mq+'=ʃ}]=;U}e=EE$ٿӵ{85.9<&/0G}+.Msdž;w.jtպVZQԷV12 WW,WHh/1-*"t9.ò R]|٭Rh9<-pUV17ci`k5xvI9Vm7tzk 2 aO&s݁A }JmWCsqSji#偙p9%쭨(;=-Qn[u ªgr[Mpg qNH:x_KfH^Jv}9e!`ݡWUiG60I~;rz0E=^ |0tQ2?a8p{p" l7 ژtUm2;tn;dp?ҵtzH}m]E֞@R#ll2N^`@1˂ 0;5M`SWGe4Hw>@nè4;"QLw}ocќ CIM]-}eUXhl$oHw|Q^kWX%)g:O5-\4}\1E>30NNpR}((t.L#WTԲJvn>@hpY;3ҷM#o}kbirHݤj mNUj>Ujk}I%Jc'#t4ZMZz CUDhǓ<|6C=8u8QF])H2×@03et[2wop܋f}SN/|V,{5.u:>+47zzc1CH],$:wctÇ O/ I=2)~eY녌i~eY녌Նu_Uv%6WA=+Gtyn ^.%sah$o-nN]55pOKR|`Qp^701sAՔOè[FYk얁MrRZ3B }+1+Oj҂~UvGMk~fc" #cX汣v.+  89 x zN8?uvR]oYoŊ; y+ 8{^SjuJE37t9Z<$`F0F<#==Jz(!E n ? ]]#=ưM6zu9Th3H˷ZNIxW㣏y`!teeWi)ەS6Q0<n`88}>d٤ƫu˝MΦGuid4d{-WmSIY$p1D7w?pϡd%X0Ӻ2pAM[%Vu3\ˌ-`trkIp жU|zMuig5FDe/ k]?{}vH' 5k汭.9qhxOiڂj'SSz;|k]#G 0ͩlKrSr )H4t9#$nF5pÚG c$0;xdrA֡WQ6z*+JCk) `Dц4q x#l!x8m< 8YO c801م 86峊(ycd7zJ9'.ڋnGIjm F >Bw65qNMEC*-VqˤsdbtQc7\plފQ]cTul͝M8OL7\@wwA㒯zGZ#Z\8|"969@8v%ʦ~1loW(74D]48?%sZM5-  4L7^Js9s# s!od/:8|ϒrpGG,o8USkY* v{Xu1Mk\"aϣFErڵڧJ_7vpRtҶZ!s#n00|&|>KU"n+8I @N*zԠ""" ""("UX&UX m@gWCW[\iέ}Un{%eT>D>Me]vkAos?":jbj9TLkZׂHwc˟J]v}5XuFKXFܰZ|jn5Lf3}UB,[f**O%jsuteIgO'-j\mTDQW"UX&UXkѝI'ˢ}Fu}?tUJ5.sZ8N^EնٮIiDdv}+^͊[b35?OkSf|1>M%M'-k+)zb|f7RVhW`;`Oik\|= ɫ߭dW?£^oUf|s7|USR[DN4{`DPG9A٤ 䐰#+^J65<3|y<{6l=:Zj1><3I.OHK]4r~E wiiQE\""" """ """ """ """ """ """ """ """ """ """ """ """ """ """ """ "" _Vzc,_Vzc *nu3(vW6i.%PavIØ3[-K]whjuLhu4Xr-SڞwOPX|2G6GӇ8J$cO "q?7$LOk7Sg44t~zFtS /$ {]o},O9M;cWfU;RG 5(s[aSNΫq#f:~  yy1JxgyͳӺӶxÜb@^=mVh2tE{0w_x so Ҿ7e5UG]2V}FTCH W[hEzXhgJeFI1?ns]C-dzN^khWKZWy "7zb86tmu6'Ojyc{RSQsli{^rW^Oc)VW\TWYk1^R|)/u'±Z#^O:?V: NO{>2:?S^Oc O{>X#^O:?V: NO{>2:?S^Oc O{>X#^O:?V: NO{>2:?S^Oc O{>X#^O:?V: NO{>2:?S^Oc O{>X#^O:?V: NO{>OWԟ uz?I`s8dz?IWԟ N>udz?IWԟ N>D^R|)/u'±" O{>XAD=^R|)/u'± NO{>G" O{>X|~^R|)/u'±OWԟ uz?I~>E|2z?S^OcN=D=^R|)/u'± `A/u'^R|+"` O{>X>B>Cduz?IWԟ ?|24 mS%tx`,@BD@DD Q)D@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDJ:v'X[JꙄo-t{Xo x8ҚpcPb#$kw3h6G-6{O(?(v`;Gxiiv4UW Lei#_Lʪ8S +Cppx1b7żssrӇ 9־9Um]3Eq bqŎ$0H?*rkT^nmpg`vq=]?QM?7c66^M1?WZ/MyOO1EQSh)ȵ-[oT[JJήFuwKw#ox];Ժi9,fKƝ.'0FLro -cO:n5#*Xt: .7WS4UZ5 ]I (zyΑ 3[MI5]]'K FzWn p;Oi!_*Qt{Ż&wr1YXZoY.ַTH)cd ǰ#T=m~uUM4â&RB?o5۾)xż28.k1MA{Zk{esxϧ; ̬p|y$5-8SOf+kҼG^-8* /9*j*xCY? +^j4uf{(#A>1{Wjp1_ݜ MiH`Lڋu=C#h6o67;0&u^6mMMjO4CP085V|YON:/'i]=\n>[#>Bl_zѴڂ{OvqoU3]ctq.P7W-/<KU-+#Aw^ZVn jj%yl&Ds'w$*3WJJ4bʃf OW4.<*XW+ TN#3x 'Եڏ][-0CtU`SSS{|Er](g)5D6cA3?u_SiUEc꛼BQP Fţ8+6ziNmJ-mMCD]G(!R\v3{ et.pwfjOݽo֬:auʊ*yp'yc$0HkXdvVeQ阳? zu}Zf{\;kF@XWN20M }[wKe%|"X$Gh=; h{͋YE|҆I d+t\o=?wZzM UyL5zc[U5ʪ|cY5g;lX22{gZv۳8Ge2dU{q" ]7T@n]41lhM1 D[60BbfjX~I'<3<4=K[!ˉk^ C``d"/>7W2{t߭W/y[VTu(eMCflCa'0RԼrnZO\ .hߤPziWJomt=Y_<|PP 5UʔM$MK$A=yk A gTFuFh+dNP tL=z2X9AR{QT'_,UYUq\8[4[k w;u[}5:Ln qh=i*T^~ᢴDL,ru#wt?  hOP-/‰ڏ~e\lX8.S0`d{C[M7mJ:$1f#_œ.r r1@IkE '$MI'WᚆXlQhAֵPp2.1bBG%;рU%ZYIK-p+$ikg €Nygd]wbl̫.q[M% X !P*) B@?P'uK䱵^I$\A'w *#[Zj6Vr7 ]8P@;[x5;y>dolǷ vKom̖wsjQۤk#PL./eh؇u8EPKӓ8ZxI.,2_*XAlFV<~W? a# Nd-cM>;8$61@I=hfwS*  p'd MtZɣH#L9B؟,IcJ[ٰhVWEJOh$O0cC 5:P;#-` =-oPg|MitnsMlM6;yHZple hX1b$`˫x =yD\ 8*gՉ`8㞸6 fؠ6<AL;购2<:YZ+"%0ON+*BmpK?;yA;dnO=0^ir@E~d{UP p0:cm"]Fo䴴K]H LOOJֽky q v<-4K U}>隅Za$y v‹$lzyh.tuҠK/] ]6#qnemEh&]˒I$4I6v-$!v#(vӌ!No|î88$ wp2qϥSt+oX9I,X 8rp{sZsi5Xь!uRTnǧ.f@ Qޤ8.--$Ɗc3xSotdb#i9Uh|#Clm9|);F\ :[iln5;/UktNC>|sZNmMq-O\c2J[v yIDYϕ_ ++&IJ}:,l?Q+LK'Nd _a_G,?UQ,4l4gk~W( ߕ He _a_Gl?UC,4t?Z6Vk~W)|U3IL3K@͝[ߕ im~*_iO΀-k~m'RRf Xx]ߖ*7S*n+9.5PƏdAH?T8y՘cOր,i:(KxA^a1 n̞1y6g P7)q1) oϭ|Ux}kG/_6g Q ?gֿ>_*>s aKA9 ϭ|U}dLI#rX{ o |/RaMA9 ^'|uAojp۪G܊3p+1j'_YGէ'ש' Wʿ-[d1j'Z؏_X]f'?_*_oo ūlUv#~G._2J“?%?XSf'O5Wbh<=in-.#A ?o|/V?G'*8kٶ(2\e#8z4K+w (qjǥUKx4Es*GaZ8SO}sZ۳NkJ((+_ ȧ׌,WU/?Sѿ(ψ_P\tkιK+G/Q]DQ@Mmk]ЫЫ~ 6UUm[O=  (³'jѬ _7SunH3'g"sy5<1W̿|}@./*<_Q>T?I Cǘ. sP^xY$ȸǩFP\_Uy}oEoW^m']Akr(9*y[-{5^-ռajz|omqrF1' bœ_cUj+psȳj|F|މrptWy s 9oQTk?~]_-$WWA<74NK#+s)Ʀ2wAZ(((+6B}GjҬ˟ @=jO֖=>E۩Ǔ՜@h? _֝f O֕[xmM1oa{ۺ.dbt\ul\9$kWvnpNJ㍾5EQEQEsZ-|U ֗wm=C<8xrzvX#񽖐,,,a4t*~V,sITc2 +2|8z,Kyl$03xҵ ( ( ̹Qi]u)l{3Vu%Cz74cIV,SU#OoVt-@$i>}?ٿsPA ϳ_j?#Oo\FZ2$|crkX_@kcfbr8*'i> ?Y|\j*Z:DE?;Oo֣j謿q#;ON|?Z(7`?U5!t#1m'=*`?E:ޯTJiw*ju'IQ]PV]-֥f/M-;C@%SV?IYKGri V ( ( W]z* wC٫>5fiSaEV8QE~?η/]~u#ΗWQEuX>!m7˻Tݱ+\?O@A}cf3`ydCj@]?ه;LOri 9A鹿PEv+WuYtk$Qa Bw<+Rr\S(RT.?OZٳM52cUGC@v??`yf!՟^.M+K-rPdg@WUjNm[kT)V^]~KN%Ӟs+ IpAw2lSxIsl 4 x򳟼0~~?η+{hmbA9ڣtƛ> EС Mߕ$QEltr>4?Ǻ:뫐_(;H˾VAG\?#W<Izή-+=~Y} NIn4$Y8_^HiP7JD1Z} <B<{FOujIiDCq$o?(¹/Ǩy[x#XBqnErh? ҙfOȾT E`R3ImQ>K-D{/Qriw)u`rzqָ1n|JWέJvv[-cy{hUC{ ދ6;a} ~57´Wwl`l?x{_ky)IlzֺV/;Em,GY 3+{CRsgx>l@2u} d:4D gO'¥MӖ"LcvI,I':ҏU!Ya>/f#l<~sXY ĊDQz|+o[ ---8 as2IlH>NOi6 w$~aY-(`qAhJS>.R/OdmVLkBoFdg#Ei/\-l il'*̪Wq7@|${,Ed'"~(__ӿ—|9#Yb/G"~)wh/=5ikcۋ{;xCjz*}Y45[}F?ѬP#Wrzj7GW`ۗs?ttY"VI'>2*vAڀ7-r}=OM%~Eb_'}礟QE4/ >ĿOw(K=d?ƒdZP%I%E}笟R}笟QEcOw)>?笟QE' O'E}I/Qom'Ei?% O i?% (’3`U]EC  !"$"$CK b !1Q"25ARSUaqs34TVert#$%7vBEbcu6Cd&DF4 !12QRq3SAa"#4B$ ?x*qG*EL2KG*H9X;3;8ΞrW@\>V~{>2V'[>ypYv?!MV<#: 1 fIu'&f46 8#M%#I[85 YbCIVioCxҦGZj2ROFFL+s`auG`5:Y'hK;cZItQhb )Gsҙʠa]tkaF(k݌\3aΡLLJ\nb%yRgUf. f66ʳMĉ 92QوښDڡ-о e5,)e1t(#92IgkV'(t={R(EEЙm)}DZUKchf'SØʛUZzƇ9 %Fmk;f=F=F/%)MLQ\$#4d8QTV4]W@'g e8ѥik4ڒ{la)U9 MD,c##[Eȵܓd"2 )1uyٮJκw>YFj#FFM<6%2>ۭ !šԢI- UȹR@/XX=N,5M[TSg%:̐#<+_n4jUL8Mԋ-tRL+p a\3T~ 6g\y&y2;^+ȏYX/c1ՙi-ZӞvbz8@.ca 4cTҩV2R&TIk}`-*?ZL%I1O)rK:R5TfVKUV{0)k:sԑ9z)F#;5E2IaEirF49'kM7IӖnZI,i$Yֽ)II$]{э*ډ$AE|FnʮYa6iiz+p:OȎ-o8J%9Rt6!DFgFQ!$[Fz7?ZôJϣShyZm3+ҡ"QLZK.I&ȝSi34մȌQDbѱ% k>R$feCNznFV(:c6NF XoF%4!\rCI2JRgkT,Ԝɋ9Re&FLgR#xMFY٥rٶֹ2Q0 F(R*jlfDdOFeg,ge2yWZ"#rAlV,"^-}0ԧK<Hʎmm^58jUU^dT96Bs9ESk;2pL]rZ OCvFIdyҐ ZVK}.YK$ʭgS5E3;4EP  a)>T8TM;DB.g%v .ɡ-UAkGLKZRQ$cYHfFc+:n.!a>0a/zkW-{`;+ ե&31٨qIʺc#"=dD`6q#2$JZvYmk3 ɔ4TAs6.I,嚉*cmPY"CHOg 7+`[G11lXF8RtQ'k( &Ӓ_G|MSdW|LiU4:~W)-\i z gv3`gv3`#?s\gwdRk> M}A` A&`)7ZrawԿ+pS!I#RH-US*ŏF:o3=DJCb3es ><<< vqmj4䑯`خ>((Ls%%=2]lR)-*@4*.ETgrz(/g[KZkw$RHmgy=ENf*{II0J(h6eb"RQM]fӢi(S|%;[ʱHԣ"v@:T"&TY@+)/Uȿe&GUP %nII(tR_V(t_/ETP2:FTLT0 #;GUP TU@(9r:Rr_T#HIʑLO*ĕU;%7>&ܺV{jԲ2aa3I`Qf82+ʕIhg2.OVP1kTtSWkldv@`v,FgEI9ۼF dDfF]).YvOQgQD|*I RKdG`*"2_ p~,M} ~,;}60c@(Qp˶  ,_eHIzX-m3L*ZȈй)'27q)oX,rFxC#DI"ySOWdM8GU7TXO{~㞼͋p 㞼͋pXW~d_㾼E81^S}c'N^}o'N_}{Q>wz|Gp c#D8 ><O0c_}17}x8f ` c0c0o'ك1ow>'1o{>'1{iQ>{Gp `,9z5x(g `w_0c_q~7߃`xguq=7};=yGploצd_n"W67F^c}+ c2J,3>V7[1DLRE9&Nnj%;e!m62%)--J Bj6 2!f4nw ^䋞og~; '>O??>O>Ovo )724HfVl4HfVl4HfVl4 ͆ ͆2ao ̬i3+6Fr ͆2bt˾1An` _ DcSæI~gФ~9CXK˄d!Sc t5@pj%*cO@^ǞKSQk"uR.{`FVU{I̭eV}8s.ϫpշ_N?F}\ˆq3\SxXt&+V>sNF[m݄l2j%)Dҵ@gh nSFqldH2I=W۶ -BVqmgz*JIi 򹭀5ܒګxe2uf!|»BiKGhu o>M}1{CN.‘sKJw^;kLu|Ā\h-`0#$WjZAy嫖dKU{ L~Cg|d3ف?i)Ķ_0Кw>7=zwϓ_iLo}`G0Ӻ˰@Q sծ^Qtt ̬K˧O?pC?]K`> |q.Mקx.@)5ds ;| D9>sL+N sծ^QQ'@gL&$\g{OԞ;  7,~0'%?}^ N'];GN\Syk>ɍwVvH;@5*wɍwVvrg~jӽVܗ EVyF A\td" {&VN2iwOԞ;  7,~0'%?}^ N'];GN\Syk>ɍwVvRGxjujGs_@2w麇tG>a c&jLP.OĻy4vg^}X'4)<  BzIp6$d1=Z% 6CJ MKLsƀYsO[f*8,` X,`C-xi>2!|»Bi>Oow7Xp3gV;Bcuhj cuGW#Pk\:XzF7^4ur55׮ \Anphj cuGW#PneTgLYՎs H{H82Ps__@2xSiIMB^3|DhlB۞>7k c%X>bpUPdָLF+د'FZ8 eXq؉.O ܮi܏nˀLȯs"۴1F7Nw :Zu4䤷v^Y7#2SD <%CĂe0(q'e!V=J. :RU)}\F>fiGJAW35U<2Um;ߢs3T5H];u&]bfNftp͇{o`3fCg$aW35o:L FږMo8HIk`3f %s3SGJAW34ѣ ϫhҐgUT0H_jiZς$g+V݈o ֨+ͭKi?)=b2n_*}o`?#d,x PJN VU'8d# YId[=zTLJqV1ʎR&PC\Ԧ}dFuZ̀s9؄ [ Q Fh:TF6La RiIsPZ +B Qmx4C&eO&fH5#Yj2# ɝ)XF4%M42}ҳ'4=fz7`Fl0a rY?˖#R\zAM'*ˆѶNqZR,fW Z28⏁0 (ИnD7ViL4!&m222;\h, e"[k)SaTLI2elEa!&KU=KϔIjF jD0GΝ\N5ӌi[!m7%ku+f$?O*"LZW4%DfVaz ` xOԩzs <@뉩QD{`5czzg+(̞Y$wɹ~ip&ӞecUp@Ub2ׯ+װө$VDw"Q^USosZ_o)JI)"""p`HJ BNy 2XwWv -%'NN=U˟OrWjO "]ļ_>Y%j~UӟsOqYO\Osծ^QJ|tgrtVUӿN{sB~Nnv9{gXU߷g?@7Yoz {~o޳t~?߷g?@7Y/93YT+o;MrM̊ ,Rj+p5m3.VyY~GW41U覩3qYQ~1GAYQ~xޞ-eGzzt/g>zTq7GAYQ~xޞ-eGzzt/g>zTq7GAYQ~xޞ-eeg֚ʏUouDrI\%qib%Nu1)oSt),N۞ ܷo@: ^ZpJ^ ?0oZoA^@a ? ~@0aee=mOx~g֑H{6˂ʆk-t=^#S5bh#Osծ^Q]Oj~}V9;y&[TK޲c N WkWge]wV @1 @1 AeOx[a|g ʆk3sWV%|&"]ļ:axdo;-sӾ,`9X >e(u@+&0vv~amUZoAZYcSy}eCh)f7ow5xj͚S;\O4#]ļfU*kS9`'dfFd=&lsNI`/(|RӂUUxWyjWyjeOx[a|g ৲a2>M3sbrySN/Rɖ}-rZԥ\[Lՙ m$gOV&lsNI`/(|RӂUUxWyjWyjeOx[a|g ৲^ , 3Q /'{m6I6A`X F\ ([9;y&[TK޲c N WkWge]嫶m]>e=mOx~gQH{6˂ʆk>A2\28p˂RF K @7l.ZX @[xW9;y&[TK޲c N WkWge]嫶m]>e=mOx~gQH{6˂ʆk^u Lʩ݆ aK @6? Q!$f< sӾ,`9X >e(u@+&0vv~amUZoAZYcSy}eYCh)fmWT~IYQ>Q@1`bḱ&̏ 0_"Ǟ6fl+jo:׵'Bxy>мO>}/7x} } ^o'Bxy>мniIvs7ClڀB9c\gS0凒gϤqo: US92uMuMZM3zG>L^žx&>L^žx&>L^žx&>L^žx&>L^žx&>L^žx&>L^žx&>L^žx&>L^žx&>Y&~G*> sQ:&SAfV"Df,t Lʏ0(>ve4V0_߀ɦbȭ׀W&m`q˥&7g[[5Hr2JDJ6Q3+>Uuppnyk~P+ Qr WHԉaI$Q%+j̮lHyc0e 0UsKbR(tچ umfM\Rڌ?~6@fEȿg!K/Y`Zm|4r#u]5!H#"+qk cƚ*@:Nq3qasIfv.X᳐aHJRi03YR#L/Ӑ+0iq(B; 9t)%R7*5NȈIܥ&n8R R9{᳐iZԲaS"ǫ~dt%o\U[3DWg!?g l 6r֯Ι}~IYRIP u/*a~wJ瀹@o8;}`6k(,AGz]\Qi!LŐqMi$0\94Fm"]W S"HgGM$֗3i@5'r \ +J+ e3OejZErh%)VIRESr?0IBC'*\Nyom)k6P4fw; `JE)\9%_Mf@Z֠GLqYDaN6vZ I4Wv@pkhx Lݨ#be9AQɷPiI+"+,IÙg<ȔVE+0NF^t9IX9GvȈ8IB kV<"UY"7r"++ZBfI)jZ̵̕Ӱ;CP[ Sk.|uJWKZ//0o*><ci~WhS 6]x /Ϊ{ +Nk44曒4Rϵ_ Tp"tNTkgh$^ [UFҥ&I[ a^ZM&]eh10Iz%22" %8hAY72"#2-[X'×Qʏ\V;?BJJ&t,b^nuK Lʦ|y^% /ђ/3sɫh=lb-7mJ] _^ܰ>M`sUTS3e5=1 >jˮhg 4ur3|Տ\:>jǮ \t5cFz:bGW#=1XzGLAV=phg 4ur4GX :α)7&/6ULE5Ct1Qs[3Ai;s43Ai;s43Ai;s43Ai;s43Ai;s41rz Ts_p_`8UR><b~Who}j-`7<_h=l"wLh[n̿6s1劦uG't«1]?oK oseos4} |fϤuY󷎹 >>v?Ag:h,@\H;x٠O|Lo; =g_?e6_r-]f2]j{0ޥZ_134qCeτW]ymw]fƟ싟 :Jτ᤯_N I_Q>W}8.|' %}Fp\OJ_u|4s>i+5}ӂ}Wjτ᤯_Ns>ʊΏpō_MZG!csRkBX-W9J]Ι}٤{Lm'תx"c`2\U$>9g*5)z;:bp}׸{5'w|NqWۆ3^;G>u>[v飴{``` 7O>CcsOkBX-W;/ɗD U/*tK5cv#xw /x)ʗ\Lq9keϣ8׺` i,/ޣ_vvtp'zeckݼ;G1\ 7&(Ϭ(P j:w&DQb\)d8IZuۣ}& Ir9&:ZoBϱ􀿤baE%f0i3=3RL =mx+j}r{ā8l䘌cO W|FX'/?LaFW4M0|? 1 c 'dpϢl6s%{_5p"X] w; HW j.^#RJAbEZ&\'Ԫ(ᛊ5+FK4YQmH !~K5`)̾`6]YƓ䛻;I6lfFjTw#-hYpUx[):s9UU}cG>v;\QNmD|'q*Muzt~__,VXxS'tԍ <)Mu|F\jN5;öpn d]_:x/{U͗aLkRw=W&uÞs« d]_:;ee}bgL?r~s6Ɛ܆q.ZHFG~eW +h*[FK9{4آ0㔩ecyiOG8VM5!-~{ j\LDEA+&fe#VYx+P6x+zdϬqշ~GzdϬqշ~GzdϬqշ~GzdϬǼշ~_Փ'&}g{熭7Y3;m85mߑ|Y3;m85mߑ| 3h|oynQ6l#UV&&I_O>Sq4+5>h!%}4DoQh׾j~ Ot+5?Pi(FoREڛr|!Dded aUUBAR\AƲGYt^{JV!*`0̨!)4mrX fE:\ E[3Zru̯a5rZM p8j#4*C|_x̪ʬ}Ҍ0fpMEV)לlKQ=f]d*-TTRUUgL8Sb#Y69nICh.JHTC's쉊19-ƒejԵQ%.R33"UE$Ф(%X'PjM q᩶ }'bMFI3ٝb+eQ"f6m3iĶ$XV TnlWS[IMMK#afډ.5Djx,BNG`b#a)2j(ԉJlk]j%s0ƔlgP}q댙<ʚZB*J### bڦr ,FqIe> ^nIrSM= NdfiOIi6%8,4|iːVbܨLhmyv簮W26=unZN%I"2JI}W+ĘrCZ T?#)m[YDZw,FV\$q^JSZ5Z2SƤMk D;dQSD٨Ydm6='rEV7}\ @7Ipn%Kn龐 ]7wIpn?%; wGdt Vit t@5IW %GyMȪ$78]\‘j<1vk.sqYo;{lW&a~iyp#:e3(Mh輘V=W=(K+1LYegMYFd7X'B)*ٲZ'zcnlREe#+tJý\;*b)|9[؊S]̧e":) *u(hjY'QrMdfJX, ++xv (j4CI:MRt,ַFj\Q%iFcy+7܊aLI1n"~JZ4WPQ-Zd)VlRT+Rdr<[uiZ2QvHhɦLQϛK1 n!a,̖dW3Xu,R$a|.|H=͝! KZp]%(ȋnد'ritv֪K!mee} Q2Vi+Y@1X56$jf)Ud햤%.gY&ff}Ca7J0kSjHSihjieFwZvF&VF\J.z]5e[2YSL.C5iVirg{%Q8Ĉӥ]T-!F&TemDm24̞Rbfաa Ux$JW唵m-Z=b;GC(CLwZJs Gtވ v9] w7cݎp|v9] w7c w7cݎp|9}88 ZIK_ k. )NpԾ ԾRb(34diHΑT?|F}}|9\iz6&&jD YG^˗ZGFTœh2`jTy;Km-iW@r:llϮgUD G1+l #b4]v tGc.Y`ٿulhuD}G^̀1U/Ugz)ȉLχiC:%Q^ Q^[ Qjm$q2Gg4_> #BЀh@4  BЀh@U: h{'C0::  YHc'. 2UnMDq4䥸#ZCQEe`܍zW]L΂wᆣ0M1M1^OoB>Ug:Lp!{zW.\Q^r*|Q^.\Q^2\U^r2\U^r2\U^Om{jW]Sp #*ۅ_9U\>*H9U,<_mA{fW{jWN{fW.9p1?ҝp? 5Aw;8ˀz;[踶] GÏx2q;[Brt\.8\pEp څ .R… G)\v….ApQ ]p(K.\pq%h.\8J .\p څ .R… G)\v….ApQ ]p(K.\pqd5c,LDOmοwhʚ]qAũmʅ u]pqb@6.Y 0FQNH/\hg[Bp{G?.~taa@@N&w]ч>t)~:Q# Y'ʜy0?uMאR Bʫ/l޷p"߂ o4.Y<9pJnZ`ѡoE?'n\x"LQk>FMu Bz.%A뺎EХ#]\`mpqqSU :uƄ}=;kǓ>IG{;6oСC3.XmE(,.^Ôx<(rX/A뺆%*#J?>$( ,K%'1N`5 Xp#ܟ, _2yT{Y>>eDtVZK_uTx>yKP]<455|iE8,A7.Y|1P8$>rGEyc ɤ*/"  ,-SYL4i2}Xa.No>/\GOof4.Y #(\Z4K0"J?^FQ wEoFmj>v=$ DċByy9UBO?o,அ -˶,!p Bd_.\bѸdq-_Q<▛>E("NE9УPOڟ !*+zlٺOY`}%e+.^윁Dz#1q392#h'C4 p~ Rib׬$SNˮ?np1wB<b6ևYlGJhjƏ`>?=8a:|Ϧ4K(dgQ DO 0f+(N"' 3~x=7X6 MsCRs\^y%.nHX HmvvlΤ>|5:%ˊtJ 0nA"T-D6$FJih Dbb~~:mt̞ϗI3 ڳg~---t 5+wz#iH9ކnH@K ֍`f#9c&Ͽy8V5 OG+x}HDw|U'3y0{Z4^/cFa 0#aиduSLxuiooII<(B0lX5ê \qUq ,ېtE= ݷ"bq:;!:uVz#h ٸVp|='1H%D"_x<^6lXNJ+P?Na\uŇ~=iڃK?p#ҩc \%IYWOybP;mV{^FC/im3)g8>wVW+A;=ވz[*3Wߒ>Ԣ7nW\~UkVfJTUU,UJI<^~)%'e^!ʁ[tP\QaĎ"u[='k]u9uofK•Gd2k(&LH8:"i{˗q5jr\EPlԴLVUz87/bGStu57U%1cE(ۿ]BuM5pMӈv (TTTPQYAggCm A8̱ <&)bw*QF_u]j.AKΥH@3z,`WB!cPHBeU%Ph4J[{kF0~x֭_WңH(B4M#NBr !02t%^pt&!p:C3묛ޔI(k$ fiN+ϠE617zP@4Vttpy i/ ل@/GǵǀHt0ƕ8zk@},Dr :SQp6aK)=]* IT|HuԬ r+qI.kfR*,=Rl[`FMZ dBL:Ƴaw/úGc]x^bHݕ8zG\2Ny*{!Dc0,32QUYɘ1c3kj ncX>DJg0>ahP01K7̮dxs)!L#䨰Zٗ+pHg'{<^OѣU@]utsMo߲o9***rŕ's6! R}IT y/tp8s{bIGEhp= O7go+//;mpT*`qDi9x6 ňr@֮~XG /dܓx\R><8Gn0;t_)RDʌb!Ѡ o8OtiX>*U#yr-|S]ݿ0U3i 6oXK"vT{v1f$jj~%Sz M;w~V4 8#^mïu,w]|+_3\3λo[2QQYgqj]C[8f)SFɔ3 &dKosH%hGtcϊ0)%B XXֲm=M֖S|²sOx~'xW>sw5~u_ױeqx>ݍVQ γ{^6oߎwTM&1vD8lMX0d4A26nO`„_>ԃ֠KK ,]躴c3)dmu2ΐs^l6c:]IZaXRJ0fS֐)a6da#mv10$h?(o˟r)x9#3iTڸKO5vp 'zٷ uc6z|><^/Jlڲd2I-73et 9̳ 'hocݺĢQ8kVb7ʊ f͜ŭ܆㡹Gyx1}S-K 2*?Xgz14):+ZZ֍"z4Y$kYҊ);h$t҇lZiJK2vK.}9- #W8gEs$#eSh[GסAr-o`ېR6 !m;tlgL$³wPVs_7DskYߏ#e-]ݻwDy t\~=J[Nhڹ`0Ȕ)S9eީ\s|;]>D,߷D#fg䄦/.?ٟn2Ų A3lIf-rNB<"cTXXc:z,e ^-7J4y2ƹ9H9+VAggmm=mCFMG1֧1 ?QGG'UW1|D5Ç uqXf?aκ.)Xq=pMe^]J[Vh8H،ܰ+g4dhX$9(%$*]i)ç ؤs6Q;B$m[d JμNAmv_]`LVUU ,LAlIu=n ྟn|F_ }v&3J oھix~eZZi6V,_΁D"̞;:+>?4[lbՊlڸ.8+4irUKKQɈI㩩 O{ظa=qV>ioɎmM!B!4M ]uò@uq|`2ӏǿ2IM< "*]JClͺv i= slsy LT4iHcĎx'h3Y䐴E֝{V=ֶCE m)pBvW+dA[z_p͟dI'g}_ ;_} ButꫯqL1ifɛ?E$/H)iڹM7jr47D={.g}7|k?g&ϚI[xH֍(W8ITφ 6mIХ CFBr[wRVVF2ť/v14mx=>R `ظ3)h.ذaj’Oҝ\1 7aR]'Ʋ(vd7i'n=*1kKij^aUYm! 4deFgӰȏ(:K ?Ye"s&{+1Pm/޽ù/'Lq뺚sVZu֭_G[[&OfԘLu<'8@N0CggW Fٲe F IDATFf yۙ>}'g?A3i4yٶ+"<|kdqlݺ<8/*wl㤹'#F2S3\hU:GW`U}|Cr.<&nXVzFWa^HBdlDL8 lj5M4Ri3BX5̋'bF hIvf ٙ*9E [C+>f=8p(pajX`J0Shѥ{sכv|v55qO->jjjor7ɊYf5^Yǟ3s FItuvf*6m\φ#Yf޼Ӹ˩aᄁ#XSG UP;tM j*3NS*_h)u:beW~zWyy淸ί?lhsϿx:RhjkV$L0yN˯d9^c|eO  C>~)I .Fo]j J|DT_xIMi1)tǣYD̶?k~g7zZqɣc#hv*, Pt3͖<iNru4]7,[$.OYU>g; {k:U;CEGz6_znDFs bf6؜lidN{=jlZhWaUl߾UOpiqsPjJ0.ή.:J3v5#zL]!Y^x_>rf =Dh|K_w~v;Xr97@s3`O98>!Mu SH4ShKhi͔1| =+nǎEOC^yr^saDhiirgIvdJjO7n<{41zV?ξ.i^DBe.&RF ^o5lٲy#PT1>I(˯'|fΜ^KEE%Dx7`S !ƢDc/(4U ټlPI&QE~bZRm߱)M&*f:z!rVg-Z@ֻ Fd8 2}왯2_g9C̀]kxi"rT-M,s+C`mR UURY%njcўbphsKibK‡>o~=zo„ÏW^^DK/k׮AM1s&ݱwE83(]U5U+3n8S,gnbSuQ*"Z7ɐZ{>$,*O8$x~p(.xe=m:z`Q#!?"'1䕡r4suݰz¡96Us- Yn&h9OZΐqD vR`%P)c k0edvqAƏ r% z4#6#/- HJTՉ{Q,I_[EUUUo`Ыy߾}8&PQY58a'O.(q.j ;n7ont=UEL:uU* oJumˋGC^XJt %I0Nl3C2}bwu@&8,,V7ecM$QıI Β0 tz6p LQ#f,”DD9g8iCČIFx!.D"LxK.yw]|~4aD¡B2q{Ӏ7y=W+N3׿;{Y[ig`k},ƌuճ~a hJ+N׶G"iR!eL6S֯_džx7>TnTZ& Jpࠑ2-4T + vb7'6i:a)Y/#]dB sEM+Y8 gMJHȶ~#/ 55,b&KKr6"iM:pm~ôZjΰaUTVVj6oيifΜqHRlώmҠƹ%&lܹcٿΟU|x߷o/>uE%=ijjb괙@euzI[_8 "g9CΎLam5;_Me+ϴ3 LB lQ9$̌oM.-x/</xꙧxg| /!hkk5baEz䌔R.Bl:eN?`:o`׮&{~{{#sF(t6vZ:;;i)++‹ݟn.Yn /UV:ΗR6g}R%2.Yt_W]Ad}tp*0#/z|ZuY[ݗ 9,] XDB0  >\|^Ivٕ! BpIhEÀ7?=ѱcDžGփ9mf\͛ Yz5mmif̘Ey&š5xYv x|?j1ToEe&!#ԁߟi %KΥ Gz=R'$λ|{&R !4>OiӳWWNYD[[; cGwbhoogժھ}{l6N?RĒ->[(h&ȱte=u.χbFV uel[\n|3t²5aU +YdI@&[+zލ[Ӭ2gVvQ.3Dw !֤h̽]ͼǘ¡/8k|&3"JEnVF(D-{b%< ڂ~!DWz7a{YEEXQ۷c J,$ {DcQmʪU+^u x@JY0UD蚆x=*h!rb5Я57HEuJ PB iYCYpX8*&!D]E2Ǟ[:.J z;/ )o߻ kjΈ:7(-du,}E9T5 ǒC>Ih ЗLu#Ŵ5O̔i /^mu5;j<IaP=R".:cpe Yft99BF95[j)s,c޹~a:{Y:5I. ha\jO\z z 45d޼SK^5 전ġdCi2UMXy'iU ]Uu^cRb~^zEt:>Y.4B mm[/¾R4N!ĞI4p‰~d 'vͪ~o~fБ*)̮=M4c6Q'XW~xBlkM-s_ o-JU0;YDQVZٹc;k׮ݜHR ZV7EV\λR5XuMGzLǘ4u_5]蚎ti=ޯdH$B /d61uZZ}Ym]1v3,wlzdxe9m^yhf aʉCRʕBZTWWSW߀@sy*hmm^EJ6"hBC[4$1d oejIaifN~fݞ=xOt*|B?Fn5~\b΄pC,i}>Dfm,?5JeHm -mb ݻw}?TuVZI*݇ xDJE>#'ʴT՗-H)+hH$ⷃQ#H3OK/mkV}oI)lBxXu M55h(Mt45+Z-kyQ- 1s{ػw/#G6 Te`xmݳ-3ǞmJڃUi [>뚱|<ಆq}i*˚/v![g{MSU>rzl~ |_JAᴠ=x Kraj,:YˌB hn8.̀cgB)D4z/z|'1c!}p:t]c֓ u>B ?뫩q{=|< Y\:~]3 DSL}s+ƿeV] !PZk7޿oR? !%R{x1n Ζ>YsP*6@J*8-fdiF[UU>h\n]?~cdϜ2oU3 ^E&J NDH]?YkExBkhWWSSS`|Ҵ|mO& c?8 "3춽I)(Bt_}9Dr"bNwy<0q jRGu$zFGӖ1mfީHr1#{ѠЌ={K1]w8 tzb py;r4|/sLhUPkQ"|<6S?]fx춇3 OK$:A;"`춶Cԏl0kI@^qpg.:k,6w]0A0;EQ웅5ֶmېRvG̾O.X6.Y\;um4MBuk: ]񮋮tUê8~UVV48J:[O#`oY/+h= EiwKO> x5 +~EH -խНP,,Q`ěH$ RXUiI]7kH׌i誊njKimea=&h'շ|$QĐZ[WWWcԏlΎvx42F*`];v~?HupH?H}}t`(l[UU ?{HE/ xAZd2_ ;))d؟oPUYEMMB]l.9ڊܭx}nn:S{{U۝77p}eu5cgzPq<ȋzЍFp/ygZ>ݻDMRg@xr6L>Qu 9gQO'Rw^TUA* v8Ep%%&M#v̙}pِw6LܼOD:^mFQ"u͟0z̥>( $ /k[+v{e[f >wN~)>yc+.>l[ oYz}?ٞ޻wei\{kGM}_jO= ¾*RCZOVU` Dw,CԬXeKwj[ӶZ>sOA>ڑusUUU>a6'NT^GG;o,;-Kn]_֍MtJ@^v&u3 BZ:u>qJ Ƶ_X;*?Sgu7wM]RQQN2p8L  UUDA{{6JBA(tZEQl,! 3Oͻsρ$FBX>\s.pOB;ӉIH5}|ee9>oJƓ;u}VW'5۶n{q՜^8,z <>k񷿱TQ) F(& }L1dx7xX,Mh}Ws=ObJ^|/op(#tq)56^| 1'ԂꅩDO?3mr>o{wc}^|Z IDAT>OL8\F<#;rLD"Ai{~q޺u[;A[$tCI&h IXIs_IZ֛N5f?˹hCBL%x^zHf)5RktU_w{y㙯Sk ׊<`UybocƎn$xeTVsM̡bj緭Cӟ(;:Yv52|>)e`&(re%ptLI )FKܪCW]ͰaEGG;+W8^T{-oݳ}'y TV*:,& Ϲu[JuR@JK_ 5?ǜ4i rBP,5TUA6lX /> [[[Ճ}%AAS"3hA;C`:QgGsWL7QDX1*o9WՏ1o DžʇMşwmj|Ll8e9[ǿ߾㆛r1SO|)cl?F'hL0tL MӶmڸ3>dRr_.&'Dm5(!+=-y+ظq=Ѯ|y#w\~84Z ́D"W4)CB(էc^KvDJcYFo7-m<ʇ<-N3ww}>߬α Dj5Jbݲekկb< !ފYB30o,7A`0T6x@^xѫ"h⅖ϙRH2̗7V\Ɗ`r;-ܛh~$ُp;{u]_m1ʊYةYvJ!v6?2Qf6+=?׳+U#s sc$4͈j)6iq@u} \qe9_?z=KIҖetNfF̈́(c}H. \=si1l9kM?HX#?Kě:.A׾53O*BdP+ E(,b-!Mu)u~oe57!(B(f,d*zc?̓o BqIq?%@ ttm{]#   !F-EQTJ%u?%Li@GwDcFWY ?@WӘ.e32)m7\y=Ïx<3`Kw<AE!LiZy'Yz!́}3:O.8]_Åc.AKW}yg͘ajEzIRH$G2KFxJG ;E"b(RJ>?@ tEc?$j-4O;Ʈ]h>1e >YC1EDcQ$v7OaY2s)+ H4 .ISG*CfVXy`0ldRW HjV{{`0jNG+BVQkYjʃuou@]gW*TM#.ãx'擂ߴS:DT*魮v-,hEwrX1mA7.Y|0bY̘>m;6#dd]=~_e#ٖp0-[O(0,p(L{G;{g'WU贈–#K n0, MAY&D#1 &"٢,aKz3^~]tҝ}>Su=wyNwYR22jkA4") t*M:)XORdkz=640}L8++XOa ?{+Xm!fڃ>J*#cѤiJJR477JiI Ç i,%> d)-M1rhkinn"J1jjkijj$J3fX+ill .c㩬\GÆʙ0~"k׭aØ8ak֮rƏko#)ginizjY#d\#DX,Fm]}{ÆÆ 1NvD#Fr+19ղx/6'a(b&] O)w/| xSDfꠍp6$E J8S H&$ qKnX\;Dh8mm$zj6lhj=9KR__ -8 =y>%R twh]b.Z^ʗOc)X]J"`黐Lښub=45DzWX,)0HRסڣ*QU]ɸ1n܄\V>MMMl7vXv >t:ukf[(-)e:765bSżNDhooCUihlTMezn&_8/u'VH_„!@𴪾{;U|nUDfsXJ=U|XzƽPDd7-%Ѝ1XUՏc}c)tttr{B7v Й nposI#njEtLYYl؛CJ@||㴷4a2׮*a0"JutrrdųikǍGESmER{5reN^¿}xnd. >_P8V,orR(6Wy܂%rm׈ȟT87|ULu*} e? NU 2:腋Uts狼MҒ*#1Rzkk+m=Xo!Af[h($$4G֛nի]}/W/JCG U}FDqe˘wFD~;~'.ei|!1bxkssSɛoΌ;pffqg=L>Vt:yd{g A.++mhhT"Ot:[v<@}O.Zk?(s,dYtw~QUv{ xAU.yuH805njG$#DabWq<Lϩ5M5t1PV%Bmۼ{r1Aw@2UT'{ Uͱ" ,8ޯB!C}jH\ "l UapĶ("ۆz` cfcU]+X9g;f? ?83 Ta"r`1"2ѽoRy $X5WlV"8y􃘐Lm Vr9/_M7zXOTb8ZṶ; &GU<"Dئ0vǸuXZo:60: fl.'sX1XF6*,L5X0Lډ/}G\ݞ"DCUҖbӘ _/|mg9|B֑v \5<{ʁFQ: z;8lP;$lP r" qa{,>گ{Ү7<*}&Gcz!m0 : ' Bzōs@|J`M>{(Xh ;3ވaO;q>^O@a#gɛX3G³z1p-vn5֭i܀9 v8oGxw_F fctO =L`ql%eDepzЎ6dzo~<L vfI.z$1AјEܧ+7i`y:tlL zݯ@6*dÄv>g{^7rn I 7 IJd2xK@s&N`:L G &OtKXo_wZ}y6QnzZ0H{|#Bs6n/0YcCn.V^x;T>K5$D}.ƞr+Bhu߈HK`"2q^"r|6__`@ׯ3|4궐kJڧoR_ G['7a`z0%gF^JYQ3u=QDcb"r gJ! Գ\;c!ʱ ߒ˻[oo ܃a1񼚓Ԧ9#{ܕq]ݠq0ODfNkUEByjSssDd/nzך폹#G[ ! 4_"w{=2K!'@dU}̀3؎)nvȧbV L_}o"!"rRνKpU&D$)"9\D.Bȥ"2^D5c^ )"%"\$"WF'DY\f!U]s(""\|76/p.fPPo0gc"ȱ"2\ EDy7ǩtT #$}O98~Qt/L)CLL Y5׸;DbK1Vo69Eܧ|sx^;(vv:|c|0<~yw P66?BMwg=+>TB3G sxsjM>|}17n؟DbϪ^X;*>XŠ}&k 1ȕ>8^n q Upl7p7jO~|1"!(6uNo3=ͷ+"l"r`W"}9!"<7c; xIz;$wLsF/|1G[h FCDu![$LLcIlOap7򥪺9J" 2 6;UXbV,²wo mgbd~jko * :6^F`g䀮"BP՗z <6I@Y؉T&!cc1}ҝ_<Ɗan` =oTe38-t&cOAE$ | 4ׇ{q%RU}_F\Ewks]2ש|0;x^U;kzlv(&qr/~_Dڰ5wseA>>k9݃]1YX06xOlIwVc7IDATO h߲Dm?/ շ {/оC Tڽ] L)ڳx-d-Lؿږ`>fhp㜍r|}\ۻ{GtH:|40WI;upSndz%wc=N,0-G<@qAAvq-Cb6o&^Ɏ~@(RznE@;_8t/ >'?sO7=j+!CU@1p1ϧuR2wOgSG+(1U@Sr'|M3 =\c=Oq!tiQP)qHxfw%< ZBHgx]~M]hpkЦ[HG; ZˋclZ?ғ{h7Y1?X˩5~'T{cO'5}aHc%"ONj9ASSp} >ױ CD ^,`Ɋ ]))t}@+:L\1[s d}$ TjlW aJEMNWaMXj0 E{ s (Э|s[y*V\=RL8_ |۷SFD&x#׻wOaE 3EY,XʭZsyLE tø+ɐ6/ZqlA@80ONj,0-i["D/>fL= G1-'xwvgw}3>[Dv ܏k8觓ǝc^/㾊ٮ&"{1l! F;Ddmר%D-&CUkD,KY9l_ub y9THѣ"r)f %wn\KX l&"#0FUIUE+1th`'Á]`n??De~܃_vqT.;xŹxOC+t:y\FD`X~[x?C,L̪CE=Ibe B `ºG=>@N{R:Ϩ^5 {Z ёn5iM)swi9:+u; <)_-k띞uc׍QwyFi̮lpy"6㠂5-am;܍M;KMT6("dqpk|s{6oY(n7\Lv[t܇F΃lh?_S&W-1ݩ{]D8poe֖ЖavW{m+y%Ǝ.?@ӄUrh}Л9k7J͒ 22^NiWjڒ #"dz#C sK:n 9_=Vm6|ˍ|<9X0p7KO0B}5=W黜+|s<9.iÇrNW>Fiu;˼uS'g{:ԔzKiC/{p `~Vo:fOs]/wwی t\\Bv zp[dY%_Im@j;4iۮ?##ucDEYWOGI-]\O K#XƁI<ClƢK|˭3f٪'aqE9鋽-΅䷕ŧV.Qw՗-qdAtcpAhkEtKxHhmTsUM#׿cwCg+ދ>εeyj*xL2\V R$ew21<9 HU߶q6WܭU5ݣl*0O18WR.Yriu6z ŵ"lpC#eXv{]<:b ]]3w(EQx ?G8T̮XT̀yF~3Jewџq҃v'}Wq\ 7ZdL9z!Dv])SXe7iw*gβ=ӛ3nv]SidFJWji;Cœft㕳Y;-9kJbGx-sM {lɴUq7ժ.r K;y =9\klwflm/| ~]pڦ SFpRCAg= i^Җ+/ ,dRa3D87 U[F؝i cHw#yB-m ͨ6QgW,T-nXqAͽԲmgGKQsWFE÷1%=i#it9ov /)Y1y2{w@q8g۽;GiyYrYzp|0=؍;W^[Y} J }f5 K3Tfs$xQ뱭iy:5֙ Ap;l .ݢ,4sEY4s\6|Lأk8~wfhݑ3fB,M|Ndr^2pI$g+{{4 p{c/q;21ei-בrop '`L$-\6>/P\nR-5[JRe 9-k I*|caþµGwxos); {@5Zwr{]pnA]}'~ښ_tpU><u:23nLzM&Yc]*hԖMo!nI@dž_ףt#@!=hGlz:]CeMhLj^zz+]}Xܪ x 7]޽zEck J ([ 0ERִcq=$khOy]YkZx\r=q81&OBhzKX}AdPMK,A5ӵd'-p捎kM3Oȸʽ-i],A ㉕l8іWCyT[}QJ7$`o~m北u1Yت4i{])uX*wa8;.O76EЏZɥԮ?-{ǙAA6(5F5w@2襍{OAs?9}NN+ܩkkeGM(j[@I\cnn$:s2Gs?M*>#a؎qcKk$gWf<ꏷX͉>V5ӵs$;΃{/sx*%oٹ3wF?{!,~4$n:"[gFRS[b t`zK[mA&NԔT6$z/;䭦BljUշɪnrMM7M w4J zo^OxlALMRFKckQV$-I.UQEh}O$X3㯘l6,esT?T;/Nn3̂ Ql2;#WT:isnƷ= q[+Rl-n rQKkzXK޲v*[m5вc`ccZ֏ cGU &xd=|6v{dz˨J>6{u{c7^}.sJjV\?jgt-0`*ii{hi= TOY9LiOB(v];dRpN(6qeաlTQQJXzpUZ)e>&ܵ&Cyy9#yV{=mkn0Ac:kokU5nQL1-=LBF;QŲ}X5n索1Ӎax-|e$4AE@h۳cJ[UΈgc < h+ve5eI:Br'&i[p?YYZ7AhwmvH0S㨻9u@lge a/rOԺS΃]`Zl6[m%?ɂ󦢲Y[]IrੈH ilNIQ-FYe$T|<@ qu['֔yӺBmcC\0Gy{tYͅZzHxbz~+C ˀ#s2/DAhM-m 0>jvF\'Z,k4~VSssΜitN^ZhËX]9ϔg4fΧciÞώ'UΜUtnϴV{^i5E;}eӂ >^uu;V۝dp6M;#i;G[- +M=S玝 9'Y?lkeV4Z~S a?HnV/,:bnڨ%K ci=gVΈ43U s+H ϺF&;jEa=KWe3:*oVM㍝~w{.eErx7uz&0?GbQl-RQS^W*p)jCks8w96 vmҦc;2FǼن%(nBȜ<(^+A _*V4F_&#Zl7XڣStvߓ??z,cctSeu^yw˾IwޛxGPwޛxGP'~OH'~wޛxGP'~OH'~wޛxGP'~OH'~zߓ??zoB JlhJ:@緫GXf\2X״ A8{ܪo|JCd""" """ (R yAOzOe\oWA(i<9ysĬݫ/=^P,c7Z9<cetWUM OsR 07Z58*EygTz^$Q2k},tduiZG:5\)u%XmGVԷrNItlX0URd{:i*^[ Aås)voYcMYkae-+$6Iq#Y <.el.{1ڨm7='yVHF3'w2KCY<ITi$Zm1wA&^Nv@$@1 8s<͕t2T0s]nz}[4Uw:6TE(ssOoZJBzGo .R~Qy\%.p˳'ǷZ[ Q_c-%sD!ӶJQ e!9A6F15L1Ǐ־6kݪf]chM;9keo7{ӎcÝqS]I~YEA P{flK|o{n9:nIhP[(iIMMN yǏIrzOҶWDAʹ GT}-lٵQj&'dq%em6X۩4e3w"+{gE൒8cxo``c9\ez^ZCSj q$Xk8<ۣxdrY_-EDɠZǀ-h02\ Gceu2ۣ}l1IiĀ89.Z4׮66 m7Jm[[#e`3yªhmzݾyd\t҂atswhڡcL>Hj^6@1*#=hV˦z~گ2M nhی{\ZN7. jUۭqZ)i([u<ێ=̍䖌 sѴS\`{Ʉ6ao3I جuכJ<ōpkFNIU%+:9-Zus,Z6@˸g6ɯZ.h50^nIgחKgMťw[ru߻oݜs@P_6{ote5Y;nQ| ]<\GȷWͭ%()u-s&cG- Aj6MK#WF/:WoN\Nxq ǩjqm6z\f8#RA<+=*yy)] v㘂\t\n[Qvr~&'$F;pv{⎾IH3Xdn *&)<sN7Xzp`MF VZLY$52K{<|Ltd4G9.=%Ki:gS *`8ĸq2Rk+Zaۛ+KӶ7 w:Y5[YjG/iT9K xG;@2[uiһNۯRL۟."l4rvK 4`ii}P ;c.nIa9h򑅱],Rt\V"I9Gr:]˕ڶms+4U`a|n1T,֘mVQ]-e;C,yv-_rAnz9F#(yO6[[umƊ jfnSBC)@DDD@DDD@DDD@DDD@DDD@DDDAKY4>\,d 3ڟ:o_WtQY6_Ϧ~w{.ut/7|F|BhYw+MUAGKhknu.NњZ"}Vgw<7<':M,Tok1O:#Ym['tjr KD\svq.9' up_궧ٶt-tQSjKM6 sY&Kxn2A_*UGQ3*9(y GFފUӭ:gr4-p.EGT6-dfVQ{TSDE DDD@DDD@Px 8s#yB\ w}i5Mmzrb-9|/1[{մTZ:5[#7ŰJ|K0h]:AKL27]^6yjSEyUJZN$~Q o$ַֻ$]Y;%Nx #.q<Wo[S4nڪcܔt" GI+o@7ZN3Tկ{*❱I [5qk^wN1 Q7ѺҵIw&#\rq;ONWm)!P̍x: }+Wbٛ&3=ȩZxnosaL5ӥv 4&8#I ukꠀ8ἬĐ8dJY 14Hִrx~z6)t6Hj^9iO$9p#_Hꭚ+},ӺWq%[N6Uw W*VN@G?4<9 tZ[zOi껴>~EGP˥!nem;-~\bk O`m׋D{ed5TT0nHq-U}h:B-%=ko4sAXRo3!ǝ ]oMft~`ZikMs[F;A9;Cױc H9bT]hm4]n,I$ G>CO9҉颜@:8(>=c52IKK:A>u[[`QQGUWhj{{wCZl E8o pkK@I8c?R1{9k-- H#yW1V5~IIMcRI%L~K~8| o?pTlwuu:~bѶHj)&$u;Z$' l{h=8q F՜47ZOj]#Y%@`ў<3ξ;1ֺ\jV\iQF6FN%hcG uB@9R M;*ihdh{bG%WIŴOEMQp*v(#sZK7XES_WCTRUQ Z|(۾i,,WKG+@T7*h M(;x8cuaZ.Rh) 9a#K zB7yإV4-eSS]\& o2?09³" DDD@DDD@DDDAKY4>\,d8UICE8λz=ADEcn>5MоL/C .Kj } >P:vDȥ#A atMjһ@ԖfP MMv8k\k\c^4&صz;OQPƞ1z억o 13̹[80\:v}zhZwh{;RA )c(1ÎzZu׿䷬Պ-Qٝz~t*?̭ʥ+*?̭˾n興J -'u sJO9#,iV%@뭮k􏢵zFN0qA99VtA6u46-p#^5&*Hi4BJ&{889[TAMe}s- ޚf*jXdJ4IAX*Ȉ+Vmv]4ݺ9⨎Hcݒ69ph85ǘt[]lj'8&g .qsxIj j 1E EK_-Zc3IqeKiI}f +6ȅs1Hu(+z;NRCh lb <3Cqs"d7G9JšމӔt\"0Զ=>2A|1`H@Zɩ$I,PHi&X$%##:ݢ N5ZҺpLݔ9n2I'9h-'KESFH:SE+%y{ogD7z6 ilma- r2heA’)ݒcqh' {xcf#6m%eiE85-VFey./!71VjZ~rm{+.2Y'u = OjS+/ұ:K n @<35=ix,O$r 2 V%"4'[Z[Da|8OsNJݢ ,bOYGW8{\88𺹺_ধmt no?}Uhh􆚤Kso  s|^dlnƆu0^UvJxgo7dR2'^QFM%8!l'w$[}+*[/mkvd8s|bfQT 7J]1CH'⭼'~EOSC {˷ qq-֐3г)tFgQSinҚZwݝnrrpH˚2 USBwT>QC=C\8poq)LoduËH8CI\VQXyJM|)ʯj+#E^:l82[1u۵Ukz0^.kJ8H$ ݿ8 {˭ut"]jZ~BQ ?j"EcK2rI$OI$[27WoM3i<1M l3+Zk?Ȩ**co興2)qV}X&g녌Gg?~gh~l93kP&u7WsFbնLQ"8=~N>n+Yvߪ9賹~5N77s[#\״2 ѐhu,{Hҕ6{-р2Oy)®gz7-EQ㦳Mufm-Tm˕CZKTnxȾ)Qoj|}sPT(>'Sg%B>%Ug'jd">#Ug'jdX'*>]Zj>LӺug X_k|Ӻ6]bݒ]Qݳ|_Ae./ɕht_ݓ|_Abwd&WyӺ6]Z,AW/ɵfz{SGVyE*>];Oe">!WgW X'jL3A$?U^fz|NYB/*|O˿fygVYJiY9W|Zo3}dd_U߽H"_0}Q|yWx|S;>T_=dzo'{Edp|ɇ|A'̘ww";2n̂NO0~ œ;̘?B)þ &O"|ɃO&CAzO82=E"q)Ǩ"=G̜z"=G̡ )Q&Pd#pM)}\,`vu~+m}hUXvgO~w{*V&/n@F|wOa՘آȶ[UplԷd\\7Lb5ϲxL.+H"Dkx1 eX(ፁqQz־5M#(..<u+mĜO<ďй=1t7*"3|q]-p -S5W'_]i=<+g3CK EED`|84TJI'tEQOE<Xv\8:UW] j%u(K#oq6P#sw@@|V5[mW5ow^AK `[{hᆳ}pcZ1UzuF;2:WY4<ѹ+asl 939g)]e]+eu#噴2aeMx ;xՎ^vkMh(Jj`w-ݍ5 n7qǛ*#'*QQODd;is:x6;5CusK]s7yn\w[˻t<21s_mmBݥ4{6 IQ餀 q|`~R>J:簵-<>2q_MPQlE[X*k[UQ,3C39B0e QLT] 2lrH<rz>86%ߨ7ju6Ӭ(H*+ #kKf-h$4Hj{Ų)/J-\%|p(̢Q(?HS ul5ftGr:;)wGKF Z0S+As]-ޒhXiXᓻɷ;X!QWA]5,&{q0@ǡEn;T#{)sGY yUsH[-:dyӔ%eV(*FK70G[\#4繷OW[]^{}mޚr2IZwZp~٩==raTGAK%K7(ܜgd[SWCj1TəsCOQ\2Oh(h?PwtRݡjz7ȣ,cK; qhnI®io].XJ9+K9i%v܉n^CrXIT8Z5sҚzK-t}]= C&L6H]s:\Su|MWWU$b.}Kcdь\ntmey]M3 zaik.u|QcU7JRO M NJ02.p Y=%k݌ vݢ^w .ӗYO=TRo;Zr8`kqçm] }w)[ t/vV\暒|Qw7."|2[ΰEhEH/Դ7I, [P\ϐG=f?ޠ۴s_ڒnW6[--}H)Z0/hiG4ྚZj9 -%|wj*^Bɣx2x@`IAiϑ?9=~qSX2~[,(jk-)S^as|'oe}*-5NEQGQpacec9W` צ?2PmzoY9W&6bi]Cj#g'&CeђZxlo]XhT7zAv}Y hu5hn1o{CVJܧ֢S(MOM XjeF9H~F> \>zw)x\9mKU4ϞHa$6x 5=C|[$k&rp-68e Nͦu o _u6X=GnUTMOr{Ū7Dq% /WJFMҟ҈*S=]=t砩Ԉ*O=]=*{| ޒ>맽ޒ>b i{|{i/{|" ޒ>O;_'ukDO{' ?O=]ZWI ?J|FO+J {iOtҿz҈*gW5=oY;z҈*UvdKNOB wOnNE%P՝V{#M'xk]oYYk]5J7}7Z7>_nN4Ūt޲" y:tsSUvٽd'O|Z+ -Uf?z7Hm}oY7(ud:DU诛VAD;}gt(Cd!'yĜ` /\T|Ŷ?iUzε^V?f;wțEI:-u]O its㟥mwGRܦPYKH$tҸ_57j uNO1Ł4rWuq eeW\hewX`<_8ecԲ^d0ɵ|d cqr/M3\t4sk[:Ɲ5g/f p1JTj1A`˺73q}+#c X֗qqzפ@9zT 97EQU^C#)N R8<>sPyksKtc@$i:Of(ܮLMTfk+!}ttX?2'w2iM}ѫ+h+ιΧ%n#͞Vvc=,y[5'wzFH2x,<8LFY!I"tosC}GÇ;b-k L|0||WoTSFcd,.scto8$OY_L;tk*HmOn#Boy|;7Jm#On ;bwbw=*;Wjd8(0>e~{Tvب;i⣶gҠ i$s,3ѮgPtnӺ5(,zPbG#Ȯ@\ݧ~ڇϩgPularvnKݯ(:GXL?ySדvد'FmSݯ(:GXL/yT {/kwl{WPuarN^}wvؠya2:}mc)V>ڿbdu ~}/j>Oy{V/j#.K^~~bͪ|Y &3j?%Sf.A2:duƍڗNOyQ7l#.Qn>}O?bhݧgPular~;i>*;oPuLarޣHKQbdu w*{OjC#&GX\i |߱SގѾzTؠa2:=OovӬPt܎as>vƫOz[BUbu %]*FAr:duͻ;8~HҚmgؠa2:JΝYY)vp(GaD3I/Y K-In wbaK[tpՆu/]r 7:oxUX6gw/7rNqԱmO]*㎚39O+6 =+ <Y6O[g6HV$=y-27鋥uq[i'0?sד,=) #n[K˪,h$̎9ZsrIA@ҧ!)D@DDD@DDD@DO"" """q@DDLP2 @Dd jY˔Lb/ˡ|,q9,:cOQ~ LgɈ!@I҃|pji*Sl#9o_y(`yV衧O#X qzAEYQi8`%f2$|[gèlbVwchd,lqX114tADAdёWQ 8+QV_Ei-w~Pw!+ltZ[EjUMyFRso $hnThj{ӄOdqn io8jNeR (2JkWkޫKl*NH1-nK@l*JmPiiW3Q Kw$o(4ؗ*=e?WL"Sc%zqA=}ö§ߜЯǬ'%?4kt)~hvWZ)փUw >_:q9A=* ~|ҬЮ2Pr|ӫЩ_q)WULmu5*|*}]RºJqAF]>oS|A֤Q>2|ը p CjaS'y8ºoĂe?y8½{bo04җĿ2Jғl6/ͷsKv3n~8oW; "Բb_!qsx !lu,ǿ+ED+\Ir1ꮦ~)WfZU|_\yBcT]_,QXzLR:fDxd5a'W< ӷ:o.'nRtxqbꦚb#IʖkFjZntda#B«u62SMJ摺FrG*jknN4皇qa3~t~6(x.s3^F|㟊oMު#ǧarZNvvSiy5;eemžt9Yioom֋T\5W` p/0 Jz(cE1EXs>a¶uΕhk]oܠlqH*+!4hhFk65N-0&IVKᇈ]VOε{/6SKCU;MUˍc)hFK9+uD_)حhk媤 *Bډ8X1 qq#W݂^A L5N31n>Ҭh8Dogt B*&u002U{Llvh)6/!{]ܿ %v ߾:07 {鵛`|VQ:Vɱ H!^vSZ.U3iS=>v5?z0XI$p'" Mj ]U=t5 d \Lo. qd I##Wlj {qݩ+nq/:vF4n/ڮJ)Mަ@ddŤ8+hZ|Y"qva7;ì dUilk4T ܘIÁzк/imY樎:[wcg#c 4y䜹aO~˖h_|V-}?Y;.Zl~ -_|Vm}/Y;|j6}X>]d寶G "`r#+˖hW_lN.Zl~ -W|Vm]?YO|ZWmAE|veX>\dTZ.ڻd~w`vcmj|kz{.l^ -_|z_mN˶hWvcwǧ]vؽdTZ˶m]?Y=?'|zWmAEOjvcmQj.ڻl^w`rbmQj|k{.l^ -_|v-}/Y;7_mAEOj;|j6}im]?Y;.Zl^ -_|ZWmN.Zl~ -_|V-}/Y;|k6}X>\d寶 "`rc+˖hV5Ӗ~\dDZ?.Zd~w`r#mj|k glAE島E(O~}}m CHKXkuG4UG-InAq~ns-y?WM mԲ3.pwn+븛3庵m sVK pόf$sZQ_S2P K.$tn?} y;3 + 5nܪ5)e/M?)*(ag:>ZxsmCqeDos*.:Jo%MM$DxqH឵M?T,l޷~TQU:r}4Z0H"^OжW4}mTDQY!" ""B Z;C5,uREOO1G{ .{x_c)SN Zbgi=q{ޙb>U;ʂ6u|uoOT6ѧ*ӽR 񕞍7O{]5+=ob`AS>2ݦ(6g~gMU?J젩{i:FةѦ*ݕ oYS{>[Ѧ* PStgMPlJBث*sALgЦ(vSΛث+|)#dOUz=UWMU>Rzm%US{_Ц*)Sz]#ڟ)K> O{xeޓG )IG{ygAF.齊{Qt^LPQ}w:obZ;}7WS>T_z=>ΛاgMUAF齊zM#*>ΛثS((GT7Oz]%j} obϔ{i/SS{C齊S>RQΛاNJ)yS{ʂUҽ obzO齊FPR4]_MT{QW{tʌ{ils4G~U~7W'Y{Z`qެ)Aw?L:Fا񕞍7VsҼǝGMi+=obMFثY*3ATӞ6Ѧ*}iF ޝ|=tSh':gG(+cg|sTWyaiȪ bT %4qEDR5{|&Aa ^9oe(A kѝI'QB諟kE!ws]ʽ^^Ɨ9I'/RjlK$"PCYZ/Wfw-ӽ1/ٻ^5LDσIrI7ZJ ^lOL{Á)efv[? -p8 cԣȼEs*?eYTۍnǮ:M^w%U5-DSGB"8ȍh$` d$_$Ox`?FeN#̊2E4>Կ5fZuh{cɅrkp౬_[mSeTj8iV;qEO# 1AAЛP<:h,ДVkۥMb-\R3ɱc:pگSXu|=3u ,OU μn0]</ky>w&5o0Ա' =s򬠵s^ʶ vųܪfnoo?l>SjRu^_+9pOX\Pi{ <&dc9ZA+l 2ָc-;yMo~qRAi A]n-`aބ |V N?co8*,e|{X9ڲmsx"jᯔAjlv˄mCÔ_η? c.Jθ\9-sNA+ DoT5 ;+Qqٙy\a7 |ڈi3lnOY1OYj>;wSEdP%" ETBIfNlVqiez@(u G2 )K^Btz҆ PJ(G"ЀA΂@DNt8 p0L)A( ҂ Q=(" | ^zTA{<A ^Py yaK Td8(+^q<̾+ _67u(!z*A?ʶ`Z?~?YaU ABLbɀ8BտntɈZ_8޲wjYlS?|cå:'y֬jGwXD?GطOuvkn{ۜyÖ-dzN^khW+ZWy\AUؽ1H:slu6'jܘc^~o= -576旾.%w0zzRzJº溦˝dw=?)=TzRz/_e'OOUc _e'OOUc _e'OOUc _e'OOUc C[5MAgvwt@Ф|_T IWcZ k:wD{Zw{E1uHud" ~JuH?9='yGNv:h4c>{4cqzCM:ho_(iY74c cC}/J7}&k{DR7]')|uJR5=V5=(k{Do]" Z5=rϏY(A떾Mv:h}?k{E8 V5=rϏY'*r9Mv:h|Mv:hRy9Kc{u>ԁ{uFk{E?QD{u })N;U;}=tY[[Wɇ8\O:A( R 4tO,Ҷ3Z0@qζҚpcS$4[3/mZlQo<2P(tp͑,kfm{tݻMU1v9kUG`y!EssN&8BPi_OQ-7~+C8dI~9Um]3Eq bqŎH$s:K `3MC rg`tq= ~=Ȣ|cc+Wz&5zk5?*}w:(?8TEh)ȵ-[oT[JJ}s~;w'Wm.4NK}q}KILv7 XwRY7L>|tG h^uLAWk[h-u&V;4Pq#g[MI5]]'K FyWn p;Oi!_|-~9=S;6V[j4R4JX%dq<EO|_USM5艻H\~C]Z[ ZvH݀{xW妷86W=Lji{qfnLʉ瞒C^js^zib(?ƏIiTp=ESUU EOb;_'A%`[g0x91ǥ~~P 嫫ܔJ[ ]asqjr mDkTפ?N~%S§(?KrO uUnRU6;9#~Z:;i~:][Qr_gyrmFwεzQ:íۋ;#`qjx,;ѶSU\̒\CC yHT-k'[5-UT3Nxd| cOGIު; jS{]mJH"ɵ.?+=x[ON:5>|tlq˄oo< }iIrX3]yw1K̬rT3H+by9i)etqqŻZiM;ftJȢmL2&1fnI''bٜ-G4I`no*y2S y5UƳ<\[jtnk,6gnE]gfeV?Mz>p=+6*j]氽,s]8 ۱MMWO.tv308s-涫O)Wlm)񟫪w4fG h~mRjY~˓W#-SsQ+M{ {uK5qњ>J\^#~#QƧ//dq!S|j6ks1÷O6H ;>jawhF__TZ0py<\>ʪCtPj,P^$dݙi 8_Mg[6[wѷK|Z[*x)s {^Ke2>*;>K$ΥV,'iljxp=EdYT*ZA-R'8 D@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@PTAݮZ=-[Ecmt$<7 :OV˄7:8ECxd,ԌTc]1]3LaՇMcNy8f++68>8+LׇbA;rDO6sWخ3w齪 v{U _jq]LDƒ'N)t͙M%;m"1 . 1l|&O=+- 8['&w6oͧ[12Gn61Ǝf@`j-u?5# xs8F1ͅ%)DR# (0R# (0Qa0F Qa0F Q&L)D”AL)D”AL)D(?lyricue-4.0.12/help/C/figures/docs-main-playlist_0.jpg0000664000000000000000000015467313053456656017407 0ustar JFIFHH!;ExifMM*,!JFIFC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?(Š(`YHdvF 3Vif\#`0ʠ={/l}i6Fr|-PqVMvm:^A ;[yl $ƀ2Z,6<ւP }aAesN;gNx4X2\$J z!X!j$HcC N<Qq[洂5'e~(!Տ8dPiE23ɏǙo~2EP OWҖ/69f+PF]x?VkBR@Jx8Z֕s]H ac3N)t2].dY&02@GyqW]qWYY]ejOmhc9>aNyZEQE!\]Ku~]Fy|4^SV *e|Izlnǯ^={VwZM'g+jjqfdQ ?MN5oPg;W5no"{LEnQvs')%aP0> M{a90B0=qjY<|i5O%Wv̀sh}j6V3IpZMů(סEAֻ~KG[o𣚏uy^QeBջnӢTP^f;Ϲ$x&I%=BԼLOB?:So6 nT{-WQ%_<&4C-ZԉȽ'Km=yo𣚇u |ęd1FOfZM"덜dAգL9owIJ_pWƛR)|ǮL\Ud%M38oVt [:9Ac ~' ROjU#'&.׍pиM40IvdRcAOo]լFSj]lmCmҧS'p|2h[QpO°sr EH\[8Wl2##Yܕb IR =^{*~_x{I#|5(2=;?jo+wr[3.-.uT}Eύ5J.*O+Ugu~ߣGҡ(AڧU~Dewl1$U_ߣG~>7_hyMˆ`)3fNԌ+3h{J[Ǭ_R/pqּ󰣫iPww7268>vL&y 1Bɱ ex 1ӭ+76$>pO݌#9,)]"(5#wdm ;`ej]Ip]+(  q8ԃ^Tp}C9dkN9uˉ&VM?0Q A> g'@ZFK; guaG+%|m-fc.Xð8@:t$w5@ݿ-n.+Xc v]%PEPr?Vn{)RD8V}*̿Ukw&4Z-Ҽ]MbP`/9,$9㎵4v>0_1U,̊ p'NON<{d4tHPbyNA~1֓Sln{e]lyT,;I=028=Q5(loOx 8;F85N]/ņoky1!,L>@r i_F/䴢Co;H]Y_0D@$Lsr(Qui>^.PT88p~Gz̴ҼSa[j#.eYd)e-l6,VIdA! B`8O㮠JBUC%FGM'WsEQE?K>~=bp* t;oZij54mgbit YRY\To\}>혔O'A4j{-bfO=;qsj0p {dr;w-,%ElCpzg4{+KFv|n1\`g4 WܘāKxfuy"GuH3tﭬ%%53k=4:heDl+@{ՋU5 3Dp==:8w6 "[e$; f }뚹ub;UN 9<iڛZoRUT=\i"E%FrIqo sѾ،a @`8qZ.oX;i%=LC1'Ԁ39>}#ƨ9 N((ԿF fm?H0BcF@5O4լ&#@|#izۦ9a mfX#Xe.A Cq<3BCp1 FA8=ؚ% ,2Cgv^F18>iK <"y9U=N;{n"$5êHQH뀧A 6e/K&G F$\x pH:y{u$Z-$l=[;ѭliz%SBvlTcZxmBCY(*ܒT˝"K:Ed wn!;z̓Etu g (`z4e<` <΍.I 얳G a1휎2g{;o%UHĆD d$j][Oۃl$y~>#= ܶˢݸq̭̊) ٠ M0\y)vs4s퓏ڴ+Zڬq,90|~sN3]K>s5 aRl cSjpF!;q9=;P[ˍ} -cYc1n8'lShskh-my$2>cGvvjė;RCNFצ3M}m>Stj*T vcs_HCdq,{$J$v[Aug[\y+I7JR0ẃ"׌47GqQl!A~usI ws HUXKX~(2/_4Q?/Ǭ_R3Fb gdvTF]^ .=B:(\+ki)ku-.0yS; ȄW,d 7) `]x+H}3eTpyٹllIYn"wCҮ<$0.6X'<Փcn"ɐ XӜ^xgIfaj pB9VVد\s{ZLaI1[p#cTUyIW(wrr=*KOV3=Yb.9O ,!xXD)<`9/`Ԭ!ṕqqt Żp;)R:A K4QPQEG/|R W3FDUCRK, o,UfULҀ)ds-*0$ bwp Ja[gHev vrx*._]ۤcl"FXcs_ 0I %Bk:%=Fy&7I2kjN]#S)_PAw77O)p9#t >\sׯJ3>}opuY?5 ٘˜{Ziuin-&"TC zۤvѥgktvpzg>m"nIyb\/ssԜm zػ-,%oHcϡCoXGnM{hK)$2I{a&.u,!>T`('Q(ci]ySbX(.32鞙䎊ZcDDҫ\du{MY3[}FwOe,A t>LR61w!KSqy5FxmM~>Qyꢍ!"mDP=O( K>j_h Qn62;1ێg>nk;cQ#<|%Wmu3 8m'>M]*=,( sL7'; q \ K|Id=_\{(ӂ8z?T#lV 6%V,ǣbl­י=qmVbY_'$h\H>P~yEpU\X{JT'v5V-t]oտ>w=VC p-s_l߫T}{~PC/_YmcC*t=Ջew4v!bFvOS5wOp++ϨPh\)q%QՁ#[x8:XpIV `<]mPx(Rh Iy52#Hd{杤\ƛ68@jlΞnCʟQN-,h;uc}M]M7_Tִ-"8I#\F;-qk>X-/ZQՙD` V1P zb8WQE;D)i!D/ +xnH#XV"E޵VqdXddFƙ4]+%srGO^j.˲)dɳ|#9&Հ +<=Ftt˝/TlbPH"b:Mϰ H2~~rA`qNCŚ58 ֯)QvŒdv K`#o \pHF^hGA :P G>KG,bE׵3ψ!^ <(PbU]wPlHoW>b@87 Iϰ5bsS GI?t7^!nߏI =CsʈER})٦񟉶j?ƹ g ֬W)q2Dx[ZSpƊ4T݌C  !"$"$Cz _ !1"AQat#26UVq34BT$Rr%5Cbsv&SdDEcef4!R1AQba"q23#B ?[UXP( @P(c+6qc~-\H6!IJ D(슔,} E7!rZeA!QBKJ )ߙ巨XM"$Ish@K`전]"n[K+S)vKiw* [J')Un62qOwZ-)/?p:nb>]m)^[m-O{U ( @P( @PjH!}Gfԟ-IEJ@Pi^%;eзy 'RTu77!\)[H ;N ]J_OwLW8r0ӼVZmcS {/M 톚懐ܨq ɾ[9RfT$ (! >n;!MrWBC2%Ɩ6'e @Pb{gZ5WTSL1)uJd%{a4W*P( @P( U1Y*;M%m!GBp3)p)sRyh (V&bI.v43Oȹ쐅a )׭41NG:E>)(*=Aa7wrN`֛g\ޕ9!O85!7AqXC^'ýӉJo@vm2~}jP/S[qY[RHy>;-BJ@P( @roJ>1 N H*#֫{>Ӌ+9Lkm:Y↞JZϹ)p$J~c]*6pͮo5Q!Pd ;8SiC~ƻuQ5GMX#yYuc?{Y[w?A @=6Զc] Bq= vL [Œ;ċi W}+d$2;l.DjI`) mxeHV%Z:=<=J9;^(PPJ~AY:>/Tֻ{1ÁwC~1lĥJQ&mԥ"$VЏ QRRޱR|vf VTA:J$`AP @_5# c5#MZ%գu" Zr@P( @P( dNDL<.Ze 񃭩=@<߷} BJ@P( @P(??\1~K4썧G0Uvm;{J⭥]@ߑkhp|=vizjTycL.lŻO1끘̌k)u)Q$a5߷mxLFOE|GTOH2`6A~)(Kg J\Z6G}Wtr&LJ˳U4LU ܏}fkw+I?ۿQĔTP( @P( @P( O~؟5R9֏liMIjUqC{)<nLj( @P()}c؆+} 9 w8jZԆQOqCM/`Dڬwd|$:ڢ%KK܇Nz+e͹HiuH+s_pOށѠgX:nQn9<-w\SqfPCdRG`=ќcgLKGyla) AP}dإǃ"ynr[̇Dft P$k}r Y|حsL~>Qn"昭G b2ÁWcE#{Qq:l]) 0."%nkTt ;:4f^)6l EiIB XIa[\^sa- AHAGlf٪2o0Y[AAQ R<(%*S(zN&,酊cnjMC =P@P( As󯯵b9rhWdoj@'_Kni1?xڮ#3bHkǶ"`Z]$)dlDr-~jMrti?GUݶT䅽v\|t)@%)$!=^u.]c= ETQ#yYtI?ۿQĔTP( @P( @P( O~؟5R9 ZxzVsqR}j+&)٭U[?5@P( 7ص- =r}D'/juPűع33=[*P( @P(5݃ CP$2vjP՞ !^4JP$$`KZGq >4fmߨJ*P( @P( @P( 'lO% )$%i'FfV`Jd%?V09LqjWĘh%&bqUKѪŋ3Q75GS7G?F=I([控,o~6{ܓMuh|rPg=$[控,o~6{ܓMuh|rPg=$[控,o~6{ܓMuh|rPg=$[控,o~6{ܓMuh|rPg=$[控,o~6{ܓMuh|rPg=$[控,o~6{ܓMuh|rPg=$[控,o~6{ܓMuh|rPg=$[控,o~6{ܓMuh|rPg=$[掭ެ7 P?{Y[w?A @P( @P( AjG6RQֲ1Q)(y+Ti֦^c4AִVk<7h#|ηdsعEnbox%*)*WMqOS4N88;:qh9w6&1=Zsg"=ҵ(qBIQ>\tK:(n^R$Û bDGy/[{;^"h1>ҵ3Dic}Qa)\PJD f)eF33]bH\(%/2+ ;b|54U4EV"ͥ H1K̗)O8;$v$;F5L58ST!yKK6[Sqxr$9݋q> -ѧ8CMVZҁ>f#H^bK8JPOa7Q5S3Ċfcud3$aat*-tNJtg }yՐw;LBvPJiVEpҟ6Us_rLZÌ\,^iQɧ7-UyKE֒뼼&־)*W肵X)QRTFCI*RI1^4r.4\@Z9I>D|TU$Ǜ:<i [PJIe16ildXGyiG #Ju7)4L\*aBn]ۏ5-h[I֗ $Z_ "ULfp )HIUEXWeMX V9x~=6Fy-wzw> P[@kE7lse۾9F[wwm!s,h }wn˺v}rKmC*V ߗo/:n˹|s?#7lseo>Mw6ߎ}kw›9m#7lse~9>F/ n˹s|^ [ݱ͗smO)c.ϱ1{-nSv6]ͷcbZ?lo>Mw6ߎ}kw›9m#7lse~9>F/ n˹s|^ [ݱ͗smO)c.ϱ1{-nSv6]ͷcbZ?lo>Mw6ߎ}kw›9m#7lse~9>F/ n˹s|^ [ݱ͗sm}@/nIKc.ϲ|Zʾ3[']Wu>]ͻgȫBnXJy$ r=ƭ?E^U~ϳ^"W8jhG7^*oWe,"ėQvP֫ժ(n*xa[ͱ)B\ZoIBi|jܦN>\<}UTcc>|}=]n89KKҋ[u+B`?뾫:Qcdz-h~YsYgÄ.GښԵtZI*'<-S7j6&ˍJA%3x~"RUINc\GΊ5SW638/]Ať%, sIðZ᫪ׇU/LPfx!z\rxATFuaOgm>i ~o6 n+mAV32C7[2m8AZ}r\}ma˔ZHgFm$sw*;jpq}cE4zG[{u? m p 6{ٳ3r1LWVa9nآ~\Nk6 H#[#|.&O~5Ҝ’\Kaj *Wv|wg6!LДŎ'v.%k;O4+ݷTL\v_]1c?~uZa:im,gvX&Es)km/8c>g[HYWp4rk M O &]e=[Y1\a ;-ۉt{T^3nnꏊ}w91tkB On,\ZeZBAl6U#aEDey75NLS3^DNGGP&__ٞ5iMq‘|xq\}jeOzLB kO oZtH5NG1rcEA ژT;[,A+ Y+LyqcMiipkB vJ*Ӧ*U*F?\ۭE.ykD}执Yij*ٻrܕA8 (D߻gZ=ZX)W 楗7:*ibI8FdR6\'zU}HV]aJmE*I]UXO>z`'Lx=0|z`'Lx=0Օr#?Qu0/O?k_ ?HڿYc[}ADWb%T8䢝jLL^ҘՐ*cuN6ӿbRH *&j|)ZiahP?SU1TLI18RV)GdM<cuHṯ'`R*& }Lc:t@@(><ϟ:ĩt I˽R>c1y˽Ġs> .Z18ܹTS?5iG~j`i9x㟚G~j`i9x㟚G~j`i9x㟚G~j`i*OtQ.m[\~0^_@+[7חk] )C0.~\ե?̭7>nߖ]ϑCo}˹(Mϱ~Yw>E7)>7o.ȡfe7>e?̦gݿ," sP3a2cv|o?S||3nߖ]ϑCo}˹(Mϱ~Yw>E7)>7o.ȡfe7>e?̦gݿ," wϑ_ɼ)>7o." sP3a2cv|o?S||3nߖ]ϑCo}˹(Mϱ~Yw>E7)>7o.ȡfe7>e?̦gݿ," sP3a2cv|o?S||3nߖ]ϑCo}˹(Mϱ~Yw>E7)>7o.ȡfe7>e?̦gݿ,sQMǦxK=u[#[աf7&,qF1΁΁΃v9o00\PO경DniUOU繺G%ui`2Τ99999999999999999999999VJ~C%h ?PWC'@P(9aضWpl\(*8fA^HC~( b})%%:+}{ZU# $!R_iY_$׳tSeF $53.: Bʉ=A̭{}ĕ=q,c)(>熇 ^dGIۺldUuJLK3G'.C [)Jv V^[%Y.sv{ P.-JvLhz:P)W"&ubu ܭ3m~گƝe *u (섨 ALߨX{KmɎZRmԃ慤I`P( @PB7m1nPMfZ\A!ttEZqpVbKÿ?4WSo:;F厍;?ӫ<36dmzTV@>JS_wz|c-!QG4w<$6=枦,to|Kÿ?kOSSo:;F厇ļ;NѦ456c/Snki=MMX|Kÿ?kOSSo:;F厈ۭ6`]-w1"%ߊv~5yxw❇s_M}ijmC^a_wz|~)754枦,t>%ߊv~5yxw❇s_M}ijmEKx1ax;ZRT&H˰456c}>4@P(83GU2|F[_\})Jy%JlT1qFr+jTL%KmZAP@$%ҍ^a7(,Rmdڣ"Q}1^KRRN4: ܗy5-iDxi-mTӾcA]+1^w&6ш6ӍE)i+sCZ% FI.bYQXu_'d}ʐ[|GJlr-K-rd?}ӉK)J{=j7G׺2.[fؗ.=-ŧH%)OsNH tbAw?x\!^2ߗuG[5rbfObsj2oZCrkykWiKm%)6tI!1Fm*FU.*d:Bത6+>һ'[!ՌNvg3frbL_#} --I@޵[_N]AZ/$&T+'ƙJ y@vH ) T:ds^Y,np-⩾~ TR I*NAPW/}"r>En/'-hMe$. 'fNA8ʼn\dؙ}:RRTIRy~Dt2ۇql[дhkZRu젴( @PG]w>Ppq8Hl_ *akW$~cAY#<o\Ob1-{`Y_|IPO%jH AnO|'Cn[r%6 R=t8@!;6ͺ.crwUH/  )[>NW.- W% n[B޻pP$6./zT׾-Ys>el%S#y";ITxg}!fQ.ߌKZaUKi02P+%q ܈~Te>M9ooπԄ4cG0 iFtpP,)Uo[ ۷$>ƐA h \.uq>>`2'9';&*=-EIP7g^GT+.q \rޯ-ܹ[-RDmֵ\Az=]o%o)JB@G|r݇\m06mNIRCCzKM*s̬Nwx2ͥ7ؓ1m Cqa vck! f^OWVnҮ.%턼ǺyTd6X,fxLblſ jeJ_G<:'ذGw5ui\CB"}l:@P( gW1?Qt KV~P( @PC8]:"3\%h=avlu`[؊$*mvP( Dc3>YNbTߡx[yzH.vAnP( @P( Gô4 ͚x\\ADȻQ _cAJv;B?ӬD[Gſ>8ASOg8+ R@$Kpy5gEJ%5-$8u^V* ܭlPr-Bdq&JҖ6RBxRIŧe0QiIxx% k2p|Rs <*L$){D@$A9Bs^$) a$$$n=>b#XVzlvukp]Q*K-{} :{b?`8)2ARIBTGvX]-6-Dd[,-_iPf} =gŬYPKZ҂QRV)k%JQR${}l 3m q-I (ZVF?e|UWhHmQ>%>+c!"msm yχ.8* +\RОD)!=nSW3e xm(N ;~@("sbY_K]}Y=*}Yo$ؠykX]^Q}.K$6x)ILv&=bba_TTFI'A+@P( LO]մ}) ’V%;ޏPFdy?jFA{Zy ̐٠ h!^/sgv&7bkn@H( @P( @P( Gô4 RsGq5ء³rOl)a5JA=Ƞ3yNG$$%W=BTu+*mn]>.CJn,[eae'·;ZWZy47cCDMm~lTtzvڃ^?i/$ t[EIsSP($ICţln_^U̙r ℅qm$V5ot2ҬNqdNe"S!>#e*Zj'PZ(9.EիDe7&.LZKѮSe^(W A9 n}a]&CLDľ˃< TXm@V :_~qArfkyV!I}$2oQ}Uw~₭ּvӋGif4))vKM`Gk研v*ά㕪jAuB<,ZGq)v1/ #_ϢnQmDWh #`w$UP( @P( 3{Q %h ?PR I( qr3 Y T{:D[ܨsOkd=/A53o8d`oF;el|[na, qN:G>zOf :݇Z#ܒ犇}{$H1~)&eRt(mdp_~U(\q2.,6JQ; Z @P( @P( :p}KYq(ؔ6|+0,u!c &izOÎa ]q2npbd{8+HyP  ?P1\~{e*EC.DDyrK-P,Hi<@ JxƮldclTFZ>(.0q k_mp~jl{*Mru!~d.a@@i.%*ZV@AKvނNvý_&kY,!+mrݮ !(i$[$"z;g#t&퓿:MYn6)XRo~2J>[ 8_nm\ zV + 8~D?EP( @P( LO]մ}) @P( @P( @P( @PG]w>P(\BACJ|†@P( HƯM}s(PF0\C mIJI)cczAP( @P( AL'.}>Rt f=cߘO3w,Ć0SRڼn`{z9^o=bnzjHe3HwCIQZ:ys̷7E=[ݼ㷅O-u mB4H.̓*?.%(GA)[AcǮX{wbJI[%ʔ6;ߠ}Km"-7% u 6=$hGq9) G~b e.'[HY;oNEgfdo} q n[۞-q§ŖlҶ!Hq[^}h: kC֕`)*I h4r;կKަ {$I:z _H=)Td< V-lh#qfU_|6%0ràNr'h(0sC1mWHP`~3+lEkV(- ټ(|/Ô~<%%*RV[E/rɨ C[=A6IeJKh&KI> tJւI;}jF,қ.EJԂtGK%zŤ`d5!-P;Y8oWn{eEk]օJf~ӚFne ,.Ju:ҭi#]8 ER Hq#ȫN6wdzTQcۭ ^a:ʟ. $\v{X'A.㍶qi@* G['?#H-{W:Dm|i˃j{=~jAn0660) ES▂K7<ֶu@q"*̈1T!`[Ѡ٠P( @P( @P( AL'.}>Rt 6 zDe*[*-)qJגBTv|OWXkd7ZDϷ -6+9h* gV;ʲ {W+a=-E2$)m~jK`y3 ,-Yĸ0Rn4d)n!#cÊkJ '\V*=}ޞ蘗T>!ȟɠVo@AxsH$%|uT<͎fʝh-iR l [ZSqI R-YG&k,r ڐ% 66i-]NN'V'٬e^ R]>))[@IO2@;4OM3fN3!.c)iۃ@2CR !ז?NlB[m B4(9gY+3ƘV#w- !LńT˷!j<[m Rܴ{bd]+l]p32KDf4dC@xGaɮ30\CNuΩ*' wރXEh&Լ^]rdX6+ecHPJ[Yi~AwGr\r щ4j+%c=lB23tWhכrROč[$8vOm7p9Ibp_y1:)ī Km)Dm)JS@1tkd +-0\ [my ,*QObIZ&92= Qq)8Or8 NvS؂>;ЦO4;-Gq ΂ $3L_m_04t:څǍ('ch;m-!71X56@.RD\dh8(*9î\ ~!ZR>u J2l՘zy&62/6նi$;#~O}A|eV%t.=rC*ׂhZ`Q{b .eV1ۛ%cq)ߤ1!Ԑ%tNk* )ԀgJA#\<8~=\b72`=k <{$zsqn7tkμNNǓi*ukXRPi$d3zbeQONe|F p8U (h7Tz?ī}M# .G!;qlu}DPkik%%IW=IJx2P JVrA٨ @P( @P(ίGb~,ޭ,AH%'@P( @Ps2?XpyYRHJ#n@P( @P( @PG]w>PQӈ]Fb{KE%reZ֕vߘg= Ůc[E6q}1:Ф8y:)[Ґ &ۦGeIK8@(v: A@P(v7)v;6A!`<$oFnA ll}P( @v[! q8q椧̄N=%@(|}P( :p@P( @P( @P( @P()_ڏEX1/[GYJN@Ps]riN sb}~3)@XR{mJQOWl^Dk}qFg_u+$谴;hZ[]}.ݧu߄BG<O${w4cIM{1[tڤ$B=ho'[%H ,U"F0d\nHqޕ116`|PIRdJrKYC-97yPBPF@P(o+h$h7܎cZ-I"(Ă|WB;COsdPKP(9{_[mDo[mK壭[lb0ږ'C 4r;ͻL]z5Eq*t=7i!I#`&Mۯi%ےmRO^&RAYsOjYxjOu(>!#C=#m; ora%QCIX Hߪ uO']CcDJh  v5C@ A; oI:AszB7%cJഅ'cߢ(7h @P( 3{Q %h ?PR I( qČ(9-(7f4q[G} àV90rû0]AB@}AK㣤 ߤ wr9Vt EvEpU8:<$!dh+@=@hPmu/c7kͤ&BM-+Jа67$1AP:9,ޜ9c-*_J 6jRT@X4R|}C5å.hN?̶ \]tnK}ۮ- BI i+^rye8vnj1o7ĀBNnQ %!)4PTsږ>vGPU݊FC͇Y5"{RZZ p tPVBTPğ[˴Kq4\$(#CouNw)鋌,. G/M%` ʂp\ixu‹Ѥ?|zl 9nK)TT=JAue~!uqy$3tr#O:o)Ɲ J–yh xN_}qpXAEϐJrf`+ZZlh%\BI@P[qK gco)i2)8gז[Kn6ƹ~ 忥qg_ߦM=uaJJ[noZǬOP߹Ѡo,jsA20pi*J|T*Ҵw@1v!dAfdNS+IlN =Hm]Ǿd._Dn8JtƵ؞=&( :p}:m"3bCyR ԸA]s+&Ooò]Z\kVյΒ;*Xy@![[Q&ay]Nm)%FU2! #Sࣿ'tdْdKx ̻٘*L4!K, .-II,]6S 6BK,KIֻ ^c3>Ļs*VSĴ P5wu"_5wx Z >]ze~ XXi2A΃0c[s [b(6ʥ 4nL vX>`PW.cuLwٗl.SRaNx6ڼ*Rv5McE,[/%JR+I#̞=)dkudB_y%9z7rҫG -VIrFĘJ!H$}n;Ab^Wwe6;;dom%L SrQ'gPOYU]0, 9OrN8Hz͐ct+m_wLeVf;V7iYbPuKm3dT#܂M?*Ȗscq[dpkiH\GkRB4QPu/}za^Q!&͇pSzfSh]/ @P( gW1?Qt KV~P( @P( @P( @P( AvhbvFAdHL̄B]l(%o@An-En*-oJ $!/s+ւ^{$/f-Աo^=r㱽o[;w,Vܒv&*" Ǯ_ۃC}|GK:Qm=fm; GmltlbC-HaﶇZu% B’F#5AX~@ d* le2GJvMaP-0"3Ket 'CT  e9?2ڛlDKLgb!M(TFI$y4E3;cHi!#sBri\d4ʕ ~q~d$rIGPVkMt{=7o\Hym RPWIzAyv7<~4iC88 ؂4Y1o 3[x7"a ;q޵Aiۭm߇3)il)_crcy69P3^@P( AL'.}>Rt 7TkK#rݏKcF(pؠZzW,ҧ>D w#JR#aDoBcNιCom^"@KKH$$anP(4n{]M\Ljhu{PoP(>%IV#A@[.%azRjp)A)HJR$ Ajmqz,Í/|qA@')GcR+dl,xih}C:_3¢d.LzCJ|@5Z v@PW1)pԕ2nI6 w zSZЍ5N%6\Sj#ޒSG#% *ZR<:'۵Z}ĘOݾ<O`<Nb9DX )-EzGށ:ѯ %6ˡIG"( @P( A|8O1_Am]@RA)P=#AРP( @P( 3{Q M{qF;p1X|v|XD|6$(%߳d-k/ sn1,2J^8J:DżG}䶥6_jw6=}n~5Eɵ8n SbiGJH;楫dr$Lw)tp1c( v%N=fX=/q>s E")|E-dl4g]] Y*3`! `kn#G}w:s)/uSqiV7a,RSl^•ttq.;dI9fc>*#XIT;*FJkVzPW;e' Y:.84AAuNCQK _q S}hvbYw#fW>]KQRF_m?tZJﲢBSC˔Nq"t$}ZގEyR)0J- =:Q@FN*H;Ise]ch}ݠP(5a[a7 <8e$v?Af,qDDoNBIXףN:AhRh6PF1nC+ci @]]METNTfLSH|xB*HW$# ))<`wIFJG}cx%P]%H^/l,* Oqh vEVj)/%^ٽPd(酟s-^z}{6(5d۠IDHِ3l N΃NF5`l7tׂ̖_}%8>[mϟAa\f72eKo? Z?"ؠ¨U5)("P )I#{#b;1LyAmR])$7I$oA&=`ۃ`z/n7Ko46^+Cdw:AU5)("P )I#{5Wd-1L!>dE:4ç{Z;z.szK(\WmJ${j ^zWXEDҵ<{Ȏ{te=*wE )LL,4S͆K(P*ogD$;YzI{c2K|1F[N!歮i\ɵj Cq<M/wq#ؠ]d)SJWإ$ oFS&pY'Wet>pu%ZmᲘz^c^(($)ŝ~v0bmBFS@J=el ucs;:hܦÕR$Ci퍓v@0}M[ygQf\C+eB#~۲}:v|"$gs2.ƖWiYBP R%<ڃ%7ջⱈN]C-cp1 jPq BvRߏtPρYvLI3ZdA jpCDduJ@P()_ڏEX1/[GYJN@P( @P(֫|+U}+QbmӤggCh6h @P( @P(#߻LWH( .`F72M K`F-3ϸkP]( K4UϏ>}Dx !#gleر (B{l$ '}>*+Yxa\!аF$ځ@P( @P(ίGb~,ޭ,AH%'@P(9_U \C-q-oAfѠrq[u"<а))A_A.oΏew-6G׷ m;N;oT  %ZjێGI7Om?"^)b".T_%і0 l>[*$ pu]f8 O\X"ݬu8^ʹ8rlJ}uk{#@`DiΡ-؋𠔇K;XBB4|S,6G oǴ61nJ=(z> [7QptɷdQaPߛ@a:*PA'x` ߭%^[:mѠ6\1c*H$AM_u۴_'(/q$A!%jwCR tƲXK-m-m,87:<)Puja}U2059"RҜXd#huA7e_TjI VcGc&c,[q|n~Awx%$$PUzyuv aaqֽmx/'ؾ'#@k^~AuCzCIA;Ka󠢅)NFkm M%&qq;nAlsIAuP( AvhbvF@P( LJbC.aЅ)A*O%Z>Ҿ_6G%2S$_RCc^dT W0E1C–K|y3ǒw- o; ڎXY׊B>~(Q#A@P(y^AhűXmC _ ܏!A(@P( gW1?Qt KV~P( -:ks+/*:ǙdS C:g|RRSڂzG7 GtBN+eC,y-{Q@WPiyϳwa#%]pC].B-Zm  '@hNY-;̱ϸ.s+J]-)zBu)n0[3CjqTHҕds'Is|Rz÷̗2@q)<:Oig` &m ǼCɾvb5 5/gl,)JNhgQq,$'dk×1b\Ip;fM\e8ET%V@@a3,0[h0 8w# [oYVCH)py aky-/8;".$s/jukq ȐOA#ьC,1rM!˿ȽHS L1[TEV0a;J% $\h @PG]w>PUE0K#[~Bβ6}gAǺgk6p샨 FM,d&B$@F*_ߟS筄m쁓 *~d axcP@ V[\)֦A B%#uV:j<˗d7%KݦxX̄xa!+JG4 Q;>3.?o\'ER尵!fA*Dvߏ&Хy Ay▫s5D.1.K 'IJׂӾ)RPat6@r<4ϳ,7b#6_ Sh[o4 !?lcԝ r:Ωrݢl[S2C9O-kZZ TԲw;`CCTh񯫈ڮ GVC#|9Y֜o=2./~$P}Ea-]|j-ywǒBFlsWٕ\/0ɋ"o~A.d|4Id.)) }-O`߮v?ߣH<;#\rd.ʯMC3[yW&Cq,ĉYSɖRj' 1&} 2;:YBֆ؞)kRվI%:.bdX,Ӭ3W21C e묣:fH+[>EڙwnuMicjHPU3cY?%gdy؄FuŤ' 㭁wV nAZ-21fD1HIlHu#@%hQDZ!& hg=0Xm O"I=ڂ󀉭y~}SUz-.-2<OZA=sȥޭI9:#1ffC\dIRRPР'^Y5|ʭ/j ̶T["U˗s ~p-Uo?FjiSQèt)%D'(,9Ml}wE*9QdTv[*Gz44(+=\魛6T[pj]WĤ)!hZ{>@\\m*Q%I1%e-QHl4$0 7'.Pgk,ǺDKiai|@ORw2+A-7 ]hx-mioHm-yͥ)NPzz5Yߴ\.Y[Du;⥕$i.! XV̤r9Y4Ju=JM=~v%P\o]*on<D)g[Az;27+w 65ҐM >I l +)x^!&SlѥńnCy@%kJ}Q~`#tjl An\_^m)Ce!`;쐾x,OVd;T8PȀ:@P( gW1?Qt KV~P(AޏAsڭUl۲nE >*AZA=߲JA1uӮGXm!`R<$-@P( kdŔFyA%E(JJt;l(W4ŵɎm!I: A۠Pj^Pi (1ܓ!\BJ$t: 12#2:Xy䤨lA@A5Ay[,[JrQ6C-aCa t;ḱAݐZ JqLh%Jl#JJֻJPG]w>P( @P( Aqt']pݮ.볎5E@P( @PS:b_z G8K;ftJ_- N\P-BKl޾IR|?JPs>:Z,'} HA[Յ5io;:yim'f:6wκuwOvviQdE(tTR%[[ئI% *ge:$hMu# $x>ls!Lr O#Tt\V|ljTd*vࠂVM!Hpq||܇ʅcĖ8l&.ZW%nEp6֥h!zQ7(7TY\S<τ(TNRn) 2 q@ rH*Ͳ{EͮT/rTܥ|BTR7ǐ<">LGYOR}TFAoedS:E}M7ddTG z`lotwV{p6(Ger<w[ߗHS8-mk e-O[WT䷓RO=[ +f=V;ey\QF id0m<Κ 8|:mcXb1~q2Z`4}T 7Aɑ{F)ad dv!O%m$*S*4Ozd/r+d˅c,QW$ʤjNTB.-h%P\RZb[ HJRvRۦI,첮m2[Qi%)Q m[::AI.L_;bPϤSKd!)Jր{Bg2S2T། CkZЭk|qC{׺Ct4%WOL1IiP ;!G}toa8ݓ ϯ`ӮV_[-,*%(zl.?><֝Wd(p7O%bzao>;^D-#I{,8^*0M!);]%oA;>:]mSUdux2_&"ix]Tػd4)`4 j#[*I޻<^E s. ǻ709QSxmEZ#Z F%`F;l0Qv] +/*C r>Cw4}EnWKr̶߷>u.4HRt|>7%?Y^5"Lp̖]}{}J>|a  %1&]")+ZZPAwݲ7Mǡ;%{Uf!N-Vw/eE-duPiZz[c}ȕteȿcK΂IKkzd *RP>Q h/8]ryJ~~#kv| 润'n3+=M_Y{ёl%%D!φ P~dRZۉfz;|R RAHa-PzP( AL'.}>Rt kM lRK>6PlDX27 T}J\HQi'D%.1"Cfq \YO=_6ɮuwaKq`m^kCjAAnPF2ݮZDf J(4JRϾHV "%(S"Nd S[ (+el{G=ˋCM! JQyh#az}6 u6h+9/w[lG}f~`6]lĐ>AbXKm6ERΌ0%.H:#b|f.qcñWevo)$4On7Ĥ1= 8.Ilk@yh-s$ƇR5 JGPi\&YmIZ,'`J@P( @Tott|;P(^iA Rv6=P( @P(ίGb~,ޭ,AH%'@cz܁o-x;9*W-!M+D] _IX[][QSI=$$}g̯$]tjq;kHx/HCm.VO]1i r3J Ƙg[_:i-'H *$r y7 $߯^cSlfO"3Z[р A _2<uK`bz)lvT-a\ ֮ae)#t/poft6+S˔%=(lIKl6(ڢFZ3V/F"q8?! u{$-2ܔi;t l%*hr Нv4-'>2GøS7{Q&SxR+y,G^A: ;W'qZy=)p.DP@|8l{S֫^Ie}܎ղSH]OO>$jqጷx&_>FDmR>U;Z(f4>T#c!)t4BtᗥԇaEe6i@yAj-VXufDBZ:Z $$r X&ImG.Z{wsa}=ݧ~|Z}28m)B\Zh%}3&<9SH>laYAJl٭QVlƒXe(BG mQY.eRd-*SMI0{ @9vrF%=!bHu>"y%Du0\%o>*\mCJRBK~/w~ڲG0xZb%ť <vҁAz} _qz)G#հc-+e@T?11׮q,nEjy9xnֆt hK@%gp!$Z4TgD\Vrr'Ih1Hdi:Ӿ[H h$Nl66s-Q$m'\T4ulDYv??ݭhprei야%=|W5?F? \jiRp6xNiyhdzRw/6KTTxł5᬴cc~Aa} \#Lg@#kHRNq⃒&g'L.~xN>Zy#J!P;ޒN(2tFg_>-陋bke՗XHJʻifl:nE>uوpl[1vQQ O"OrvljE],=JğHC'gI8ַ[E"Ǘ9'$zQs.!#qQ{;^'mw)iE,C:\ӨL$mnq-/W[Ac<}&Ui耸4H[|%(06IB)>PxCk&Ж|e } ȲQs:a,8D;J%A>JPm( @P(ίGb~,ޭ,AH%'@q&!q l!(D$$KyJWPG]!HJy4(S˖-kz Ut*J*6Y][}2Ő!١7Ad @P( TgYZ6jJzlyR%) AVnj d6!k~,% *:dt*JU@mJT8!CE%ae#{( 8XAOYޖE?r K\JTd'*N>^G}WQ;WNݛ"[$mkg!^yVT@;*u8ͥR1i$<⃅)<[*SCt۰K{͇!/ۡ!li XQH?:AfP( @P()_ڏEX1/[GYJN@P( C@%C`4A@P( @P( @P(#߻LWH( @P( @P( @P( LO]մ})5dפ%7:~8N>,p/)6^BcJb$%8yt%\B[*Qܞ=u\Q~8yۿۨxշ;an?!eJeAKI)D#Wpu:?Nظ9" )9sOaAA}pnxwPP}mJmdq ǎ ۈOܭ*X`a)//{zٺ Xͷ kP28,8ۉqk>(&:/}[N6P# KmPl.=Q %NJt)Z:%G(1ܺ2dŶ]j-[kBڈJPJQ ށ .ef!= .:*iť`)(iVRt"@P( @P( @PG]w>P(#moV,˃ ܮ~/FRw4_F@PAaM*b/.mrPBTa|TFOePA_XőOAiƚ[J;tts9rln>/n I}T@ h Ϸc͖e6eW$Eݮ:H)C!jA^OSOmlP( @P(VO-qn#.H_՟U;"w$A.;ίGb~4ZYhqm$vI:׺/)ۡ\>N)RRU=Ԡ @EUE12nQ+w.orBZVHk*c:kKJQQ@)|I$ylMs3ߴ(0n@t 8ymm?+WqyFor{miMoSO:o&Sahqѧ)cgmiɨ !b]"-.2(](kd}7}x6~ӓ%>-2]!,:]M,5/}Ms3ߴnQ){Ѷ m,hi>_8,#4=?mNL("$h/)-*DDJ O =wm91]. bWVB"ĐMd ЯiG=?mNMY6R\[yn8*+S >zީ{ѶQˑFm2(CiA)H nm&oQ⛾gminQ){ѶQ⛾gminQ){ѶQ⛾gminQ){ѶK5% n*)QIKSLmӥ 1#Vk 1#P>c.G_|$\]@I~r?*u&?UL8 qW 1#P>c.G_SBdφ"Jk֐=OԡmnRo>: \^ϯz ]*PPqϲL>ڙW HmLGTǰXI=AOa}BsMD܍ܒ[ ۷"0 7d%$OcA:d-ΏT32ŐDlŴEҵ}[Y$ݨ&u}Ŏ-Q"X.w\V/{=!G[}gyFc*x{m!>*#1*B 9IתyP q42,ѐY7ёԕEZ!ml?t{=-<{7F!o 6h7h @P( |8w"tpu=IJ]9n&~7e6ۘ@Ԥ= HWCzICuj?A6S8RmgӲ Sji]Ov}ֶ?O _;x:Gi;zo&hGi;zo&.r7z>d)cA,1tee!_Nu -iMN>/s߰=mF)[bvHt6T8hrZR;OahPx#VX;v|r7t6I'@r=v3ҎYXqH6JgKe@❂G`<..+9̑Sm(2d484vޒB@N`|q%cjˎ[@h%(GڥOKPRr9:+}(_.M#{$w4rplcmz! 4^q*%˪Z¹-JB*Q'` OXv52$%ȓn Bx-Ako* 6 YcMT[}`CB^׊;[or,כK`/r2.TysToI@ڂ@P( @P()^\0/ly AҖ^A@!SKԞn?lZ@,#vTMd0Fܯz.}9&#~nWg>}OY?7+޳˟c`oɬߛoYϱG7SOo}7#k'7~ysl5r_M<6|`_\s}>Md0Fܯz.}9&#~nWg>}OY?7+޳˟c`oɬߛoYϱG7SOo}7#^ч̷@LT־F*YQu&0j]Ko񿘫LO b;o*m O b;o*m O b;o*m O b;o*m O b;o*m XXXCC*:<xvLYځwq1,[e5'֝o{vj qc8]?YLF'/av{qĩigIH?\z#țvJ O9tO?mˏ5P?d?M\!k2T_j~~ 3UCe.?@5qfˏ5P?d?M\!k2T_j~~ 3UCe.?@5qfˏ5P?d?M\!k2T_j~~ 3UCe>+Hm į!?e?G .;nw*tዏ£NS4N yGhj;8] P$*tFʉ9PR iqա`)*MY"]ۻGs˶YV]-,Pq)$)'GDl:*jE3DL6yUV9Pxuin[m *R@ ̓1y1[gùAf}SRiAIX*j'FQLQ69UV9P9P9P9PC/-őyMy-75L39G.Dڢ<?!n`ȴ\6?m[<T mIEJ1kۺ\.1m="SamT%)Ft1B^}q@R:(0]l̹<j# }hl=PVCCBz';hUi/@[-:K) I# BX·o؉y {ʏaA-%Jg(SI`(JR+"1_/3Eq{*JL6-k({oz'Z7]U&g=e^モYʃ&+-/{KX?p,3G? .y};x%JIz+-qCnJ|%TY#wz>/F?np^b5.#j JFyzg {112"yv&QvBV )AHQiQ3dr-Ii;!sdN莰tRH<{^zQ^zcro&Y6Z[H5M.!T|vO}9w.ˁJc,t74f\ӆB li ߑWv;gv th#;yT$C{89d.jG-͏  RP('g]AxϥuT¤}o2 UN{w#Gmx* 0~Nt1>qbzcS s)MyKI:뼬'w}cŏb֘6eDѤq#\|ڣc7~Sdg|m\27j YyAR(k%vɐa,WI.hS>IoI}ku!,!gp= Hq`aI"@ܖS̥_QJ6; ;n8ƮI_1*^M$h(mYcrF&Î?hfe.aPqIKJ6y$Bb}EBwҌUn"JupZe*JPZxYD*ٗX-H `^gM-J\eEmN$qNh'|q!$ v?֞9DȶXoUP\pWxAγ?#9+[9⥥ˊIJSoTJKT{ ?.>]D\x[WEk(vHIFtP#3D9|DFk}kҕzS0Rc%+h|BAkUM53Ed\.a [}Az-ږ6[ϰ-@Ҳƒ)F:y I]UM.2!Ie#}֍NoR=oB]Aڏmv'N6=Ž"C>OZrmcui Qu~SMȉQ5D0{e~Մ1Dodz9⬼=gJTxPə2]nScI2H6&Н4Z‚xM3{|fܧKeҐK6k1Tc~ÃnvF2A'ggIzjƩ^41CguUW OnAq n[Rv BNQO[CY䄡.N6@{Į,÷tVְ,y+UH˵H:_W۶-Ez]@_oA+#߆7-mQsq(ZVIחo* f@͑]byJ?jBq$h&qǵj#Z 8hw٨00V>TOJI;;אXVag5nDe|weDGC砰.MuOsۜY{rĉ GaGEOOm_UlU?(v Def~t0ڜE`)j6{kOLwd=6ySwTއZB@|w층=pa6,6Nԥ)DJ$$UO ץֹLlMl:ꂖ$p+ڸAHc՜eR܎ԢBU;C@PZMdeF`Ch5(!mDf-ld[wLmDyF@#J--%I}ST\tDZ[DKv R P{AҌp7 w2v)GJGXgXb,ӭ.YĖ. is!ןq娸% UڂJF/c}WŘ6qq6[ӢiѠ !Iȅif" <ͱ,0RXwPt}Gfٍ_Ew릦. Ÿ:J#WsҧGRځUZ D/( $ے4?E>plqy<A@J)7;jYvKZS+()D\[V5H#m:$k_@lf+ii8l+1| [ AqNDA>^i%Gv}[&| } H=?0|Uc|dFQ̖~_gMf?/ :תՎٲ$f2 2Hgs~}һBܧԸ~2uڝV 'ȦE3LÈp%Cc-ai?) `s˞C*auLwa>d( Eds:]x>2UEkM=P=-z@'oWRh]M >kYSio>T#)Cs`xDEH$<+u'Ȕ6("0̭̿c8WB@RO [w{WLh.CvojSe(/?Q'yW=]-p c#Wضُh%_8huOF1m99%rCn},JT֑D GWr3},{SHz;Zu S U<7cx~ύnIRJRIR@XTهWo]jq#NF6ۏ)Wq?a1ЈSL$4T M /_8TnS3kW ?VTx͒nQ0]_$y#q^v/NJf$VV,! yO`+Rl؝ 8z[n1"[aѵP_$q/禔q'6 &:BH`,U+iu׫+n_ e%œ+RI'@{Ԏs y>I,0\ >D~UٟKSҼF1T =aSʒ9xh/_0v+4&_L|gPdǀ|lx!HCpܷmf#\\VRN*}$~*bmҸK%o:}lVAӲϟެm-} I#ђ I*,[Z H,QAW^oϗ@ \1i.:'dR l5-u qXYM6i!iꖕ-:ң(Q޵ڹf}a)H央'_zs)~xR>pw:atˤ+js"Lq8ą#x7}F̱H'^}Vs\̯f85 m ƍdhaG.جvb!I7 7wm&;>(I`%nҥ~W宩`.r&2XX) !82(HSa%`柞%wzXdʻa2=!Wi6ZRi#!(S556K}ެ}O-n1K,\+C@JFWhB0.~KD@^EoWHV]XKK}ĩ (miG}Prۻڽ,2e]F0r+{R-)@␔^q)W#p̭̿c8WB@RO+kl,%X.[cYCV9!#:G]2rU~!ᅫ?AW/ГR6fy^\n%X]GLFT OQnP<|/H t>ǘq\)-I!+'hY:LS_onM\${P_}#:~5F󼷖{'xYW~ h)57u/B!xu4 ?j~)0 '=wӱ=@!a1~2 ! pH'5w9'Q:`p~Q/dOz?w|_kR&2K]~Zo^\m|%! ⣡*PtN/3oOGu' UntEUżŁ*CqB/)o:}lUї7lWިN8)j86˖Fі9=*,4[Z @,QmW7-yce,Է#5C ?MoJUhJZafP-@qZBqi;wZ%q4K9!͊n\nҫq"$-uGq{nj5S߅ RxԄQϟ0"seܪl–!D~:y1`Y|eµ\(Xq,R\kYy>4r$"#q|?Mi7zk^oxj>:#"c|r]*Ѝ|ȺvR#aX*w&"ʐ%BV ӵ\^n0y{(1ܓ!%\BJ$t:Gu' WWTͅzP{]$Ϭ{.tx2KyTG&( >^UWr o\0F-cqZ u)eN#l'~uSьz[uNItgaܐ۳K(R5rQe K.Ôv֝mCaiTA}5r: ~y,[TRRT;6aWeZ\Hӑ l\OuXLt"?B !D%@j5B{?W@/71ۭ<$wt(v5~dkw;`TbXmYm&6ҖBl>6j ;|#T)QJR R R R R R{Ь &˷4vfWqv>mŮ!spԨ '}/iRq"KSd-\ I;W󸨭٨\rEa_[:Sq>aRmj; hi i). V1矟72NCy?i/ס\[CRSQ}7OVy|8M ֹ^Nh=ūǭY߅"-FIҒF#Țm>߬|yT]MWfpnoP~\K T-*iBTƝi WŤ ߽T[7lI۱L+~2<6yJ W5+jnaޞ,N\y3ohXYO.@A^u =Gϳ}ogÏ?Эk|klNya`p_5.G &~quKa3b6Ogڬ}VlnQXKHHyS,"Z!$XBp$ҢRxcw.Ml: CV;wEz1g|wM8ޣ <^;ˀ%k~[?Zν􉻁t+$ G ~;V=%Պ+;5sjC4k%6QNHկxn!|f^KI[yzCM}X7sFqLۜ^2D6y**O'J$~H'jF?CqC^d-ℂJ>\\uGY$obDc?-a)t%*JӭwHg?w>}MY?/vﯢE@\I$UsM˺m$:mq8~Gf[Y 6.;*JP\JJ9%Cj#ZAgnqGGia_r=5K|s'ڹALAЄH[?ZH>GkL; Ñ^DOj GuA=>ZPA(?jAŬqg~w}z/?ChحwT؍9nPy{(1ܓ!%\BJIkpJ{KęeΏIy<0 %=ʔ:BokVQEo3*6׈bVsa{$3MJ4ĥ ,iJ;GXOVz[z@24Gįm K%aK*q a?4; ~y,[TRRT; f1 I LDՎ:R 'AYJ$3S6K3piV:QtJߐsd=pn?aHp^!a rKe?ۨRΖBBԦ\nBfL 6ڼ>6ANA ӑ!{F;eJ-qazbnPJRB3rq5fy!QRx-@:Q$h'ut/*ϕCjߛϷ2I1 8Pu WƐKX6f dIb;Ju”)d%#gIH$ 4cElx'sUmVhhBG(%o$Uc8NKk-m66AasQ)ZB߰;if sß",&å̐ӌ'IQ`v{ROaޞ,N\y3ohXYO.@A^;Є_lV˪[ G0uU|G6.Xrg,\mT'Jyn'Qw07Ϫޮ~g#kIֶt(=f궋d+t}ŠZFB@,B+fC *oDMA~Q?=#)Ç TV:Wl*ΞL§fq$BcIꏂIQ{w8);iAaDG2Btx=:h[l֋|K|&wGZi%GIHl{|ɯ]P^t ǒdipKiqL*$ Y1˭c\WPJqQ_{~h>7mZߖ֥3׮Hʸ#[ht#W%6Zתּ\qoL䘵q\vaյ i|+,(^~UjQ{m>߬|yRیvěͻ¹#m䠥sZ@R F3_\fQ̧x-,9 hp.(ij OH cϵ\zǝ[{NL2Kn3mK-m6JG)Ȗv^4)ƀh(qq)H RתaؠfZ8C[R Hob} Pڷ̒eD)<BaU;y t,6߲ [mǔ+J"r&D<\ak)s^A;Ov7}vn+k$0~|+^x](Do}+| >~@Q_՚{ꗫTpyxRo)eZ, K- 9#}̈+VP>a~Z}h=L7l7EwkgE<|A쥏;$THWḸ\dUI{w5 ,Hnji  +Գ\a姯 'ȎlZi  ^*W1W(tq5uuD87xc}zo\ˏ0u)޼>bhdvi 01؊j ̖#ILT%C4/?n%zC`n@i.7iU8 ĺr{U JTE@pȓG˗5me.o'{HN{oSU=pGvRľ"*Kl訍g׏n_N7v3f[P`s4;H!ͤ׽)zIuOwb3ּo^ur|.Y32cLJ]T6ւ W`<|W$aۚv& PKqJAHך$lv]a~qEk&mWn۠&XqK 25K\A/.kf{ͽ AGq);Jt4TtOsSQ7|ևIu0BD` @ qhyWQm\ŬCDЮBBmuqo"=7W6k`|Sy})c(fQ˴((B[I ~׻Ӎo-~sQ.@~L7CJ[W$;יX,7Pm%%$ffXVma*Hd!IPI=ic=#_K.\ 094XB E=JOD?ҿf2Ijͬm+B>+l/b6Lnl}cKrRRM~X7sFqLۜ^2D6y**O'J$*>Rsn] [yHJj瞋˕޼ 6dsJ! Jk=Oآxtte$ro_hU_G~K1NmW)ҔI6H\{ͣ ˹!g>P*kkHA#+j Ɇe\ze9)$ԁerCnӭl-* ЈSL$4T MM\nxy8=^dm~]}Jɳk>YLGybE^'&P8 )*塣oKE dLw=B@JH=O=jɍ/ EаR\vA ؃^ `V=nV(e YNҖ9JccxE瘂 Ky(| \Mt4j [@lQ.H*)ͽ< !a6;$T5dnXD0 4&֫uG8QxZ%EXBmx[Rٍ (*l~q 5{vʎĨGoJVۉ J{VG1ܿ+>?]Ѷ5*`rhq%.{y_OowQnH_d$758IE*&+ؤ.MX܇T_{~eokuѦʹL}@P:4v %A rIFkBmM($l|D}gvBBQ90[<0y=bl?}F-<2wG_ޑVW0'=t0kRpľC&4+Q迯 E֛É⻀ؒ'Er#HX?" kt dMf#h}H$)9+d[Őu+&u+NQfm lvR$Z)@s 9%dARS ꮘcүM^حoׇ5ȍkNkqw=c0c<rVc`CҮ~3N=ŵ ̕}>&JE{p$=#oK7aOĸ'Z>'?_^~簲KVf%֣N7Sֽ/bu[Rx x%My>[(.FH f8XZavTEzR$)޼>-yگPͲ)!El%GlrWɉ.2)HP'v7$y1oL|^}*4j&zO5MvgAUtARV)b2mBapx PߞԄ~.͢]"12R4qvlsE~>{mBifX dHPx|3'؅y~nԔ%*I#D؊#Y%>pLrxArH(N%'iNjo=+:>My߉*; y44@ֆ7mZߖ֖9cl}2rIG[1!RWl;H䴖nƮӭWBsp)q.P^Uv)= =۶}7mDȨx'mdBBX[loIH1a2ސ#=y[KUc$Cp$q.ܞ(vN3o~Ӎ-R{JO:*#z5'B.#`3/Xj\אNS R)@)@)@)@*ĽiyhQ{cˏ!RGeyyR9/SvʤL+WDWUO%-=ځJRJc3)|kn_`0b()GOO`I1FvteCVT9xm@'#zU1>,$0T-Ԟ'TAH@T)Y2 Vavqc-?".3.u!ZJ@; *}˭|d-srZGBKHvËJwm{Kv_/X5i[Wz=%JP)J/~co>ȻZ=c7%+R~4l|v;)J*Ӝ۝a2C؅;𛔄6v4"{j4 U{5˭=ķ}whJ.*_% q;#g5aRRq͑{K=kٗm?4xR4|@o\qwؚt.Xl Ķ!N<&!)tpqMCȞڠҔRm^1S<[>+o %[H''_=T^²n[g1-c]Z$zO3ǒGh<Xh(fGfW~f=τ>2 V IT~"m x^_kҷ{PKRRRR,x̲LV37_[q$4Xl(;[ KO5N_YvV?Cd3>*iZ~$%'Ugޗ_ykvru1|KƸ7rbTqR]m %-Nh~9fqXAmxoiBK9fV|l?f>2A VT&+u3Ã/&&A ۅ-뒞I@Yq(쑾-;W̡@ڙW6ҠԂ ;;yׂOOGR*%7iġdʁΤXՒ񊻋ςguTf[CNPBA { zsp=*qqqu[@K-@'׶, t'H5q! ;mԮݎ;-gv:c*/%%>@RAcUX >A skM ȈR'" ֖3|?Fn17k_[q7@HuFA?tUnxʹ\YNi r)R$H ng´[!Ahr*D$gtYMd+W smФ&c̉QRm[8 (kxY [{*s%[H_-TL?"~*rg^<- RO@F nbt%pnĩKu ԺJZ$i#_*b\8n9<89id{X mR )RNs,<ϐM?V@C!*@:j$z*21Pq >jqJǪbkv?n~1nnDisJO ll;y8Yr,_H'sى*i:j)<Q$%? H]34xpه3Mi(BFV"t n 7k>$%kZWȯ'tG.‚>xzYmWH#ş-%uMBJU[Y-kzve r\a"\:6[ o@AV=Ϙ6cvUe,0LOaZJ^첮2JB竔I;H|fʊc\vhqKARR6Kk'=OՎmcZm*82IP?NX \s~^\㴕]) \lGp)D`]1CNyj]#\m2KjRM[N4棵| WHzݑ-C)?$1=}'Z |Ԓw ~Oz7)}˵,P/4 e )rj [槜Zej$wn ɼZD\/Ɍ [mI '<ج{r&Ӑc{rķؘ\-ƣ|^zuiݭ0%N6\:S @UjۢY(pc:6OА@ ۵#Z'9n]竒-R'68sq$I\vsv;D\nhwS.][z#+nN)KO5| ?![$Z/Vda7.,<8RTO:W±۔.s.[  -IF,S:l_rkR Vg-lKm1'ˊRvFPf+СdqVy@K:)VPH{-==-NP-%Uj!#+K-#Rؑn۶6+Eksr|IGN:G?GoTqUECAҥ.:Bҗq?=s c'{kW"sn#~^@IF)Xf`R>v9-= vYwI[e =%#Q  byK]ܯ3#=7Y^S"s #JIsIηf9fdW? y=x I)NH@uM~*՛õ[_2 O#:VC~"Uj; ˵,R:0Ǫ׫qehB]uekЌ Ru'gdd*rsY4˨gם/|GvGuJ{$)JTR9^in^m$¸]7B-8%@= uf-_^ kUc: OAwKJyv =L6oRow486lIB$-k*Xm h(JMG\S*-!v-! $7uZ2ziTLqEvgm(Ȑ~?ۈR b:g]8 P.o1-)-3+p7̤)DIҞe=,U,~+ !R,lyEHR1frobKA-F\αˬ8 ,D' |$+j| 窪ex^ +e׳P>J> 7;t.y#m*͖ie 9$eI_Jvf_Y*d6Z-2~T\YOςnr+6Cl|U4C}<ӂOm%$vXOO ESӐx"]nRh8iu(yɑ^-e)`Ch Hr~@ů7;Dcņܥq QBA?MY'^hDS฽ BBP=U֌;l]qcl7Vn;-CE*R44^&ޭJ,dhoi 4ڃn'B5\6KCJK0[Gdl61T tuS9y}?U_>_u'Fu#]ziM[5kr2jy%9 m% O̍o^Tl+n6!K%G>Zvtȑޢ.۬gܯ {Q4Kz[(H 8GGOOx8k]:nu[vp=嵖UqG5ܥ>_TXns+i-kTxHJUI)'H;R5N\̻(}.G}n\eV^TH>@nVb1 MZtRZY #juCt2zuEb`˷H`ixmR𔨂6wRld[7-\CW&v.- ikI)e;ʳ{M26T-oȒ͸(SiCAR*{#̺gnx[͵|VZڼ%8yON 2&5m#ĉ>KL.P:CZZŚYCAl_L8L w#?:K%)jZ! -KGm`xu0=]-'MZCqҾ"ǰl9t#v,񌕫5%Bx|\IP-Sѭ-vگ486VuCh$)Ũ;>Z%`G\S*-!v-! $7uT:~153ywdDu,;v#)N3<u67|˥[KJe4KLq * ) QDvj 6OQHW+5r@!+_N*Hs Bۥuf<'B_OZʹrGŮ:Qmƙgvbd<~4,q~wi֎d]^!YFA). EG"i&U2(Ct:)!-ZR(#@yR8]>_:#3-x0y2dKHŠ߈H'`vʉ ̊(O5Xoެ)2hu䶸[p a7,dVݔ?%9_jIBG Y]\9]k\VUw=iVCK|QQRH<[L.R/0%O*F8iaHJ@mn]wtLg.ˎie|RJá>'`A(s|0j&Vڟ<F/qͭ9*ˋBR;'IpSɏi7\dL[a'p8xG޷G\L;]nO.y0Kim 2|I $uֻcoXbsn(l)Q׊6Ih[|݅t*I<lK[G"KQ>Kު{ .ne®9UZat2[:qm)16NwxzԕI2ԟQ+[qN(7$#H@O u1~o5j]g6l+#rcMφr2[pN|,(#Rp$־ud?}:|qROP߃8Q46NS@O9LkMk^-rO4LPIuąeͤ+$5ا~o8tH^M C a6XZe*@씕>%v.:S"dHCOuAF&7kJly6zyvt[o%)i'&Cs6v77Fu 5oۨYC֢OC+[Ԟ=<~lߑ1-fGm-)(q::~m>fʬ,.>׭\fs(\VBҟ.۫] 1YjؖӞ)5(EK*p%GzFlEx{"ٞ#KPU+ w#q/DFű,'4uEdl%qOb%+{+{/ޙ"shZ Iq)Tגy}*v7Ӎ~f$r*W(_y\?B./ޯxք]d.U"JLXgA ) , k ! JF@ R5;19ϻ܋!z Ja*ug*#+-Faw蝞əFei19 -}yVyzo ,_LKYK 8NAZJיUhَAŮY0hԂ@*'@l΁6 g^mz3ǃHQAUD'?:!m^fo^VS )r\e$x`DaߗeAdnu`*SS$h` )H ~Ĥ‹*^n]cG~C$FkKD$%D^~uak2 s!%,% I$8q[L:ҧ9"v\Xa %$)W"u):4Ұ}\q`fBrg2)7[E‘cO0+J$!'^{5uI:3ݡv,LR[JV#҅rlLYbZ÷s'BV)Fr|Z>g^[O1zIlμ-y ;Z\_ B ꎽir/kS!p.3ݯ[qMURf׵tǪٜ;6m)zi (e+cUJtINCj%W#jg;hp)Q^쟖VW5^.E42ri Q|r$:Ia{Qu)zj^7Y)H[(۩Pih桦մvԡҹϣEj nεJYu IRZ:|=;>[\eV YdJR4?JzOgqK&i/2.6GqCZXLp|2JUyGK lS-3'.;0KSlB]RցȸZRATM\+>A6sx{Z|| i|@fYl3[R bi_%qò_Ҹ>iăޫɷy=M7.{]>\C!iA {!:YPiC?[/}j[ht!IJP@lrI҇c A/za薡e#SSELJH|7WYc3߇(!}B3%I.!:JVc@qkGsL;|u>Z@5 #Uz.h7FyGnBZx Cz:'ιp䞎H;nAʒ~1\R? F;|^]g :jKs$`*)*Ui?@6W;KM'6]}ʮҹ筘,MIBO"N죫@rNI}cv"x' yM OeZ=v vq3$eHfe/ H!aQT/=lJS2RlA@ k򉗜|͓z.5#\~i: ҵg;e31˕+NJ}+HynJiKqjQl> JGlFB>dUKK BJJIdou??y}8; 4ِVKK|BĤ[j$i.9ɕ7#q.mGDf%$p(&yuugÖķ7XImM!%[h T:\ԌqaƇ?X{o-|<i<]ZFA%/;_nDҞȞ+I sJY-v*+Ә6ޚZSWYk6k*Svvjؒ6jSKZT vwV-o 1nY9IsZn.hq/\tT5gdnT^*ǰ3&ӗ%- DnUs87zJҭ .RVlITo} Pq ߼X[ϲ.֏XtIkԟ:RՐY %DmŧAn_MqO5[!!)=*;$Vh-&TIka.t{@gg@lރs,<ϐM?V@C!*@:j%\lS䌧  ,lE:L:8!ԄvRԝk5Ls&ޮQsJ)1ގZ MȻ]_7%KJ~lo\{eYJirV'›,2--zI熈ZRv4&eX]\/^m69%IRAaDw$(2FA| E)JP)JPDݗ&5csYAuh(QG 7N((((((((((Wޤ'ԩԧLKB\yr]h^O-EˆҟXt|dW^cUp{"sC Lyq;ү4RU7 ~8$ǭޱ-۔^sLiKQ5gño[ϭ}^i-#4q??>?J ۧ}O% D"OiP^}{gq+ƝFr#u:PVlx1fL8r1q)1m.ďƑ0,F.#Vf9H'qcJp~%(|P;:ִ*J #NEnbLy Eū#ڼVΓ0K K,!}Ɯ{PqԲ 쥅 *JCwbv£Q!֊'e('?xt [llϋ]!/EAe\/Gn­Ԩ"WY7*-0$e!~?fϾZ?]=--x0'?PQS.%qT1:+Fcsℕ$Vx%zb܁:QsZ֥BZAmDG`7PW1#ƜBƒ,k/? "lUa2m%HH@ ҂daEBދOmj.x9Wŗ}Z 0|4홱XQ(#_mϼٍKI9dGbCG12ޖOq#vc˿\ٞ{_Kwzׅ~LJUi!ò]m }АH+P@Jv|~ZW>t&QeMd܈S6엌 m*pqNINJkY>G°߮w,y ;-B^ Sen$#@~Pҩnu38!VŌ)\;I$w>U^eż١a \IId6!D+?*U^5Xlj6} /?CbD2TQ<rםO٦N zvymo3!\O~+" Vz?u>Q-T>lj2uC6&*z=ߚ=Ƿ]Lےಅ5oaGSKI$HB@}_vu{&TX*ToVP)A)l՝BZT>lj2uC6&+uO:ke\n\_8օC!dCnBNmY{$my<: +\ VAUT{욿]PͰ~ɫz_ݮ?GldͶOc<)PS.[)b9_drqf3-7uXm$ lډSGTb 2q<Sf:u/:PP:R$$yj^uC6&)T>lj2kjx.3jʐtq(?iMP[T>lj2uC6&+La-P=cy˟/.<{YNoB_d0qŅ~CujW!GZJNzT욿]PͰ~ɫʛcֹ]G`P,W[+5lׂ,=NC. T"Nӊ2Yr9_J4f2Ԗy:@$j A@Q:P[T>lj2uC6&*ݘ]c8G&-r%,!*)y;؃Zߘ V5\zG1e &AuKh:\C.e)AGz*p`W y5V\VnTRgdWƢrah̓źhIW}'#YY:'ůH076.2B|`WOs:-ڕuC6&)T>lj27X8uf񻍒٬'jzbV}b**ԋ&$jfwPMwj#t|sUp`W y5VU}ϩLH՞!'ĚNխ xG@cE* e>uC6&)T>lj2jRST>lj2uC6&+V* e>uC6&)T>lj2jRST>lj2uC6&+V* e>uC6&*^,iQ!Fbl2RXlZ ŔlN hOs\D9E)JJR R R R ˲L*5l\jlRmƸ;KxiS+K޷5҃dTX2 cl;9./]aMRjۺW^`|_ʱEͪ;3b+Ai!N |D{;;٫*3w/?{;|T=s|}_-Re]+Y\9{>#D|qI$kAŷGgB𭷟e= C%I҈n*Us9|7LzpvSzdT[WSǙe x(|@H*ؕl\v}nݡ*/!AFIS!R$q'D֙JXY* M$D񃾮H*o{+;n=Uf5eڲ l6amTHn<<@F6AF̷v_,blBIy2Zo$mM+PQiIW"[ VƸm_3>*m_WL3x1}O9Tu.P 7M}Xu=Տ_Vw YUÙ̵rħYʾt% gHq+6-1ੌ- \V8DK$vm5c_V?]KIůBr,giT7τd$i)QGֿCůN%@m6w'èOJI VABk)~r<͋&²sosqnG1i88 ~6Gp6jXl7,EˎN7{)Dw"J H@Kࢗ76{@k+~z|ϲ]bD g"ku>#N$iRI.+cnmtJګgDž&-<<l(\_$Vrim6Ĭ~tfZg"Bt յ'ՖcdxŊ׌6HJ$6I?Ziܥ^Fxtݺi?e)hx1?Zƪeak@'Pf ̇Q)HgO_V?]Om5c-Ȟ d>xU-\\G>l#|^Nr+Z ?[W OjSiH*):@Om5c_V?]Ktw?֬#0YmӁ+qIO(w_t˩S~;Mo ޵m5c_V?]Ktc7Nql!,2,8l.RPxBOhW?u{/T½{o\~[j{iܧ\tK?0n;::bDZc.NbW] x6=#B* Rt[9[`L6/Mq.K*tRRS 7ج3x[z"zipFqB!]]%P⇶!:Iҏa]U~rS1"mbeIbYOe:WO ΗۇdR,pM|r?KVϩQ/]YP."|t61$ ,)$DHiܧ\ (YՐŊزdNyxc}:ړ/i;wtOkݶH8 ߭: y_UhB' @=Տ_SM}Xu.7a_/rF1f?-)kqe Shd%;W^u7 c2=eRIJRXip*։~rk)p9gj1=>Z^$v^s=ap,̲"D!Ju{iܧ\ p4Z]r5 M  nZlIeyhZ\KDrw?g{=Տ_SM}Xu.GI`ʍǸ\-\.u}}\g [j'M}Xu=Տ_RKR}Տ_SM}Xu.*'M}Xu=Տ_RKR}Տ_SM}Xu.*'M}Xu=Տ_RKU.oj{M}Xu@MR!<:$$+a)XJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRJRpC}TR9l Mc_W?"GkkԿݧ?_ TRv_XeT\^Y#*LuH}Gmc {6έ_rm?#4ǚ֕+Kgt|=OYm_X<Kڊݠ-1|Xϧi$hHA|unÃaT55_kkԿݯ(?ORv Mc/k^IW;l[;tF&y)vG|Nw:އTIx Mc/kJ Mc MakvU,i/ B * )=5GƿךG)DL.H6vMJbȓD.Z{C[YoguU#?-? vQx2?lBm=O O/x´ӳVᶖ[RZ @'GLMCiuIP:=ݶIi6dv'ڲRGmhZݶIi6n;mpoμYKM#d$mJ 렭diGmhZEx5q\"\!= DWK):RID z+~dv'{djJ ߼ݶIi6dv'ڲRGmhZݶIi6dkӼߛBI t%Zo[%5/*WM-hR~0tuDS? E)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP)JP}/gȯ}/gȯPC,Fl1q($?W#`D˗I)3(peXncB2i`:`\/aE0p='P]+50NEmsb̋ CKalmHִ;J~\Js[)RA   ou3זMvVN=}n#rI?WѲkƾW"?/iRW6Myz#cu 9in|]RpZCm m- 'dtΜkRڇ&Tm8me)@$r)H٪k˸{dvl+|m0SpmHJ;U:Myjӎw}sgߑOZВO&9/L^HH@Rx]k6^&cGQe4HԐu}A ^a쉜b*udN1"4%/5␍ ’ C[W˔o-PK4T?;sa?@Ucu.kCze6pw5%ee*A %;H rQS6,,˲>#ol+ AU[:GBھ)Lr֘ N`)*ح >u7G1y`ηl)ڐUJǕ}.4ˎg"N5ĘiO-vn$jR>5?MQ&m7 1|$뗄^H?kk}T>7 d(*ncy׸C*KI+Ɍρf3hGU s _-#`zLK[Q ;'i*),:jHZ~u?#AeSt6;OMy!RCc+ϫl~? Oq!-'$ |׋/.9wOis£ bM3yMfko <~p>9}F}L.50?5q-HB0cz'Gj!}NvcHjQͨ.mi Vjbd5fN ]-)IP8%q`  1@WlwOT~>m5GqsgZ/kF%nA2r6DžiM>4x- Js)RTG@={ {;϶;^?lwlwp͠gj =Ɇ%MsaMXE稡sbrntVP2l0;68nGv׽G 89l^eAԝH$ -и+ ubKfۄ6My@Ly[s3Q{[sjv7D[\nK_(1ZYBpH[Bض!YY=~.vם_=O᳃\cKe+NJ e8Fl+tRntZZe$<25%L9aJCJ)$ 8KKM/]7)Ý+"6HۑhO"}q m*)Cdsow o˛-8OD%&{) ^;  qvף@]g+[wwmDU:2a$$%%U{7 +a9˻Ξ/'dh]jA;ǞLeus(ȝ X t;+?)ްֲ y֥vCǞT֭EV8%ӟuJx R (3128M5ZrJI=[D}=K? _RE)_]nn J~C4^^Nm(2ki!KQR2O^{3 ]H:|Dfsq] @=įfsݮg=G&W9e{34(O{r^@4f^^e{3ki(O{r^@~;o6Rzߺa*WEͻRb.&Bd(y”i)[Z)O{*O{>VXL'K=]dr+SKCjqJZP2572JӷX-3&[-Qҡ]G A*ܠr7dVʓe+xe'g= xDj[ Ywx۔2 m$@T+]^*Tgz) @(R6V$mZ$Vꔘ'wuR;,g_eJF6Qnz|ryO.e80% !(TorjRF;C1~/\h3})u*SπX\@j j Eainx^p*Q݌`uW.4%f5w R~SjsUgZ-kJW=MkW= 8QѮ1#]Ý4 CY!F$sNpSe5{L;LWr,hʋZJv:mm! P  }iܽ+\k^ϋ{ t]>ӱ >!KunC,)J8:) ~Nn[ R*,!L7 n>dUv||~A'I_so ^:.G 8Vߌ5ƘJ~|T谛n[).8&)H[ Nd{Nj] %tU<ˈÔVWp̆W2yPq QpTUf53/\bO6aNԔ1o?Bl;{Riq@i%h,"@G}Q5' L4wݠ%7KʶZomQLNan@PnmJMsx/&<:+U5nXJ nG} kiɕG} kj7>ldwݯ{G} kouuJG};_;I潨v!JG} **=7EhFd$A 3'yNNyR6BYl쬵ŀp2pRA95K6R;J6NĬrGwNXK+iP8A((Rwtu_X;3XuT%)L$7qYSXɭ֤w2.T?QGOEN~flVTɂi!@0Y6󇦚OR9T~=?9@߽{:{(~hΞʉͪo6Ƒild#K䁲II(;g6N#:9Ksv̩16AFiReE m2$IPKaRBh$d?Y]`h_m雌UCiZیTTXF>v[95/4wK#K1|ƌL1Vv[FR0R9 ׽{:{(~hΞʅT5[ȐRWiYymG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG~f죽{:{*Oi8zhG a[h$F8@mlK1V㇠Z7yM>O?:t)Q7Jcmrw7],"5qoaoEJe9}𿛷"M=`nT DmTO1(ԅ%tfA(e 8wnDU%H5|aYA:GOK$QĞ-,Ƣ=R{UN @ ߓL_=Tq'S3ǮS3ǮOUIC룔Gz3ouoIi\CETqIKmZwhw<\= :v"!J BxjiK]n-p.v}onbvZR2b2HN+F/333xztw<\= :GQ\vH,Hԗ*RsЕX9aJyDM%g .$(J?Rz-sC?9狇Y%"MۏK(L(h FUp0>5֘u|v%;qЧ(-;HKhiJ#~1N$qãyg\4Yf>Բo"[I (.#!mtTY 0''Fq*r^c>iA9g pobvo,6Tq8#gN G I$P[{.~sC?zfƚ“/X93-͕[Ε#aJ@RJ2zEKlJGԽY 0"PPRYyqãygVO ='bW{6M1lQpuld(o6.Z`D\nիL%)NVAs3xztw<\= :+ygg5SiZԥxÒ0*((G΍UZjԧקXZsi+BqA”)'vݮCU8QbegNԤGqQ(;(HuJ +$!)_AQAg^Dy;+eq<x/[cōxj'$_>q#JYt\+RN`dV4mYÇC(Jn9 mIPTԝmZ#l2va)$NI'y,<\-bbʯ"\W ݜQm }D^6|h_ 2e2rj%JQᄏ~ե5iq.mrAqKoڛR^\晕fkMѩ l,;`2=;m\\+Aj+JTh̩ oԥ@%\0H5WrEbø<ڭuJ8 3l)G;+wG6o,Eh{wN]H.4덶RIIGKv2*>Ҝ%\FKMj|e02\~^%N0TN%X8$EdzqEPQEEPQEEPQEEPQEEPQEEPQEEPQE.HJ15n!Hv2CY K&ޥ =Sj! `3q+0ی[/6D6R(`Ah8NZTɚlMػlBR <[Q[1uEh wQOY#j(B- ^qcwd6(1~x&N `lOU{̩xGRZĥj)k'' pJtym*K\lƖy i IJg14iIz%2#0 p K$ 9엦y䥷[S|ItߎUwדuɶbΦPqX  8 ; i4PZiwn< iTÈf&~+k&B[FʚI9*EQ74[M;'vW'.n>Im{'wn{Z:oR Li*+Qʸ\NO9'(zMg:k>Y:kc $.R+@WdC&j(1xҲ2K) #m 3fЅ aINzlWt>]2.}ML\n2NRsI&J()D#Piwʴ-i>>%Y1T#^HJd)H[R Br(((((((((((((kOUc~g)UjUiZG9 u19d@wگ%}jwگԬ3%@$m^mthVn_$!Y͛&rI0ƳHi1u"v),55.Z gCRaiARտ~Rt+xαGDSn"JBV|7 M;PIBQdƖڜ!ЗҔ€ZR:RAk2 QZl^ƵM!*e|VP$S5/ 4Vzj2t;nWPW:I/8TJ(>y<2ץ87Ĺ\3\\>W&B€FL\yX$%#?AF/)B^(bPIHV7O8)\;&Z[ܚylgcbwFc Zn nsO#me% 'ga((tf3_3ߋ"i\ֻn9p%Ƃ!ݢNG"k^wMZ{4N\r-kBV0|$(`FdkcXEӖ 66P9&*%ƴZKA VHtI!N! jlۊmce@!CkO [mZu]Qv{Rw;EihdҮ5GBš]Ȥ[ n 9"Dz#8Ȣ{Lci; 53KAMɐ~(EEf/ IkYn؛ͧțq1ZSNVFq־xI;4տO[xv=ɋҰU+uh)-#$ P:}n刨51BmOI& њB6%Ij;CbEbd4? d))Y |!.wsGӃ4Ue:J/NصwN2~;saƺ)m$l9  |UBLwiqЂP+d)X N |Kd&P!QByII4|z{*b?eƛ,8sR6JH8鶨uq/KOO -X0ڐ ;a椝}^55{0\ZSk@HgwYS5gھ>gQ߬ـVǛG^BdtPflיPME/oiέHkERҾNe6npI/L[_mB%Zc?4Ӽ^H0- cr Pp!ܸˈ:䰛a/!:6^^AƭiN¬pteuiRK;[HR@i|VTF2WR3`زQAMOG\,-7ngvHTťǔ꒑݊#KGi-u$ Z])eJY*Q$5Lºj}#8Q} 'h"m;EJe, {l8-^0ʾ^Y84Pt-G\mNo'iD@Q5\-e6C>i236KquG:h(U$efHR*A)@QEQ@QEQ@QE u\~Eou$ӿற"宂Rwگp}u;Wjmd ,U?IBZU?`~Uwz!^hYj%*(RU9.4WZ#I{v;,|G\cuML8RJIFpN2 }9q5ky㋆ʖI'u6=d{Mne'vՁ䐤$#9*r\YW.2巧H\~5%S#q c yQf`n*hoj:c佲Hm^q(>篶F/[ۻy+ʒvwz p=:'Tݭq۟}1Mhf6Ȍ/anL^))4[5]plE=:%%Ҏ-ExC *_61Afor(H'=OSžҶVzFX^nz}лѤbIY[RaE{1fs;ds15R$< m$[b$Gu ,(JFI')PA  690Le: )O9hdl(7<;Bd$Gy kHRUx#:s['ڴ֧~.ӡRa.ȝ9^j6)$dbOώ-WSIlG%JBܒ *X ($ }ZBs[ʞ6dICk QGx:HͲZÅn ץ@q+`m(sW)\.EZÁKY;4{EiPBOm; c'i{YaONgdu7MI)oZ\'_2( [l$譞SŌ%YAqŨJ@' QXֺؚlX,t!@+mp]*>NrxM\_Gy OZÎLi_'0) r'y*$-SBA.Mةūq.jY-8#U}]neMPKm tj! u JҚݩ%"nKn.KJK ˉBpwՕhLjnZjrXc\{ɘVc6S>%'m 11X:kQꋼ^jQGǾI(H}OE| YpŏFE^wK\[2tYj :e9*W=OZ53ȍ7ӂ/dJqBjMnoY[/6AJZ${9ޤHSEŽV{W 1D-e.6Ӂ|j5;6rn6Cmގ]Sj2mmrAzjWMg417.WqĤ6d%jF'  }w;Ŧ%g{3[ n a,9%-[DR$cx`ۥOu sc亥)O/(jA91EQ_TOUJpSMerط !Mx[v3e[ ‡rq@''BL50KJ3~2}=%^&r[5)yIB€P@6X0)S6NA)HFh o+}Jqֳ۸j;/* bR'%g~ʲ9ŋbԯKNaHBNR$e)NsNolG>c^_AEp?ᲀLJU*+;kӜ 8Ii8--vύuY) *RT0A#JBv[5YNL1 (m%!PCxզzzm62: e[[ qJ*Bs g>vN͉,;/ &s> sYc{0Ia(,ZJQ ;a%)Q_jCghaA.47Z9W=( {hn+ \RH+J*wպDviP5_NyﲏK'PyWA~g K|jrMK> A$yIE]lf.V8R%junƌ9Ņ(` sTuKf:1( ZTwM9U NP'nM?mL21u\b֥;AA*' iS8ƜIBС/o)f=J[Xr4)*̖HwgJ ъZHj >Ɵt\b xHB `qHqO=G?zg,O!4HͳN[ZS! R@DN=w[Sf_/B[8#;* BY۱lK>$Sҵ}QĠMS&FFDdJCh9N_"OydhkBLt!eRY;Y³SR4]OJtV?ԠV`\kLhٴD)lBvԜs`vКCZ:uE%Q,8RYZHP xRns}QԠyl=gbe(,2pO>I^j ;c&6)-.$$0=C9e98+p}&(Ξ\YqxLnվ9p9S(dddi<-Zvv2*L5% q?w^ %pu1Am=Gů:d{(ZQ r)DC+!IJc }4-m"J+[.%!IT L/vL dX2w} Ql> Ύ޿[wSAۇ8s**}5z,hMΫ]ֶnР|=@w Ox=w 鴜}oAwnzOݤ[VO͎aA`> Ύ޿ko:N޿6m4F3Vl_vעnVv#A ,-֛a*>j[trm#!JNOY84л4s?|ڲ+UG%y\Zfy)SKp>Trk~2w+m(mrjh+UVĽe6DuW{Hʭ>@rk\Tr[t99ϑJ4Z+_W+UG%y\Z/kT#*B#Mio͓{^#ѡL5N=&,lI HXr85~.WMC+Npm>؈o\u q; +I[=xUVcA>55:˖4)K\sRr<c;#g{WcϻQw9j>-a[VYxS/Ju,0qBry3YBҊ܎dex9n/ 81ol7VB&6U2 rAS*0Oh64b9v:gJgݥ,] 9n?g4ؕHA rOjq"lYi*#'dPJ/Mio͏{^Ckɼ;݅a\ڑ3lYf]rpR*EeĦzճ"()ܐWG>3X}'`t[Q>V'ڈնm=:nD˅rZr+)h$@#]OPޅ?*Tz@5l-LUO@ܷkzpExE!XqewSenAmУk)ꩶ3!9I񧔃qO\N(, :GUAHi$7]7#MYVឪ%I;띣N i2AucG^]Vk>KEYqdXN|He@GM7]Fw'u!rZ{lᏣI;^O0KMBSqe@Aޅc4*TMJ+p?I\l tTcv3Ao6;qDK]v[)t(wUK9~kݨ: 5Vۉּ#l]i -dI1VAOޚߵ]:kJ}3c?Aps:*Ym,nʴ9!*](f;AD 8$S 1Wi+n暴P@I qA@sAwj-Bʙ.{zL5%YD *HRBSFySSsr^stEZr76e$`eYn1\MJZ㜊 PrUbwPm}/ڵk>Fޠ}fz10a>-a[VYxSɱ/Gd÷i q}e C{J+r:2Ɲ煸&@OɾIoY XTv[BP( NlN|#AKi</ˡG7Mg鈥)ĨG*]EhS7dq-T'ZT B2Ď{/h34pz૛zdPXt8ll2P3W=zbJg6+_WEصu3P0qb;0֐Ay/_f\9xj4MaiP3*)aRPXV~py`U7ܦmqx'5r%՚l)~J4 qMEet+QGOjÕɞf5j)2%r; Z֒y~ ,(n~sfI8$a! (aX85L'OׄH}HZAGEO"zAZ췴 Fs46 󁄨t egE=ZS%+VB\l(Ž#py+ӖLGYHL βI j"e.7cKd+vN4ӱy˹53$)agkm`mduL)H5؇/_f4skc W 8ЖN) h, eA[4giۥᨵ%W7csCq dg?V4_paWYjWzF5m2iuǙ aũ!;N jS<Viy#Su&sCt[^O[;%5%iQ+{\s?Kmn۠PvՌspVi!WY.8t+Qϑ*j>]DM;>;9-kIH;O VԠTOAA^SF}=u.6XR4 ?vA\r(Ԏh*К< jE$kVR;%&tF)FXf ՜HAU:'Ivnh(- #4AQ:;K-ԣFiKm[䦂4JUkӥtV/o.21#޶ ENcmӵVঁ{d}=MO=~zNEpoԚҾ~56ʱA _Ҿ~T6_5Ԓ䦂!rKLLd?׿Rn~qI4 j{ɗ f}^Ik4d4M}MS{L߿gߧ(mԊϒ{\?׿\rl{S0%{j[eAZz@$  P7L[%^.ԇӼeg{U$sY/߂{ӸX߂d{*kwsմ߿\rGѴ߿J0sXd{\ΛLr4>-Gb eV#<-+=p8:H$n1ռyHSu)^G IKK|{VM@>iݦ.Q;R=irdِmI45eH&}k?M{-v?0[~jWBkTfow-\^.smnZ.BFJmJ0(F :̈l8"IJdr t 񤓝7Il ?Kp(ԩM NII%4@ܦ)q)'SNJk'# জ h H;B1.z7}h)8P5g5Е AS^a@"4mzHV  RK@m) >M` Yy?E$ z7RJO]9Rk MyN)g'}*3 tBPQvuibGKjHZ*װEZWXv{ Ean*bZ"]XFcC߯x@Z~6bu ?cpge ÃXdEfk#L7J֓1{_X5v :^eNF~I ph&i]QحSDWU2>R9927ŏ]:;~\g]FpFF6qkW̚6vS.Mkxqp3 ^7uw Գf\qX߷:zwNg_-5L|z}[m8J5fՖn їpJsӸUͧnm-,;q Q l8wd[j}NX 朓c!*3BCiT!$W:kM-FgJ Vz JCy&0\};q˪:1 PI[k,6n.q\ı&e#~ujPsP}H\׮h͇GZSkv͎b+k\&v]ɉzbUϜC)8\ !n)Oz83`( Lt9I;@NA'vM2SH.1.2WJJB>CWT5˄VBjIMMM9^B]JprW;ik1 AFXHm'){5q2~QZǎMn"xŠa+}5_%iY9և AObnRhO%#*PH'Rre3;$<٬xziMum3 2r%#p*aҥ(ڌ!֗5miP o6bAG?5*SQ8~QR("Rir+5M.4 uxSJ)@(Tহ"䦗) h))k("RieRjyM`M>)Jh"܎~AmsTMxPh! kyMPyܮg#`jTfF3plcrp+eepXX"awDhuv<K8'zq5'vDU뛑~i2qM)R7B0<„_2%/V^Yߋbcq1K}[7 7m(99XZxA\-{7ZNgrFz>[+z9 oRG<_|Sc{?;\xnHֵ~|u/BkYd]yJY8 #&^ɥmQfjZnt2nL@[';G)P/+Tσ^WqW੟'+fv5!rBJ,AW9L/:[LHUN'L&Ê)~> H'pժ3njkJ3%pYn.m`7Sh #bn]oĵĥm2%ArI6IV36W๟ rf<ҥd@Us_eaiG?$9e)NoR lddHBꩺnkc%HQ+H6A#2[-"c3* )uµV? ?|AM4?|NjsMרG$%*n%$鎞$́4[CtSۓ"Dė,$t:h,)RVWP^!Dh m a)IǤR߼}Z;(4++1:#:#M)Ԛo^}R;) :P%Hq^Y\}[Tq'wGK~A\Y/>ڪ;(4++/:Py{՚ܣݠȮ k1Py{w/S\j5Uܣݥ{yvhe5]g_=পڸ{qeIjo7>vWpeI jy8}Mx(, M& Nxn|hA8jMBRoz+sފ ##.ƶ>NM/Ӥ:ڐ7"lyricue-4.0.12/help/C/figures/docs-main-sections.jpg0000664000000000000000000025777413053456656017164 0ustar JFIFC  !"$"$CD" m   !1AQ"aq2RSt#467BUVru $3TWbs%'5Ccd&8DEeFGv(fE 1r!24RSq3AQ"567Tas%CUb#B& ?:ߥmV7'BS$vE65Ѳ]h($I$tێOb"kh=!\%]Sb[@Bt}GEeYUZcjɹ6-]5\ϢAo}hYBGR:V(xOiӏ]{>"D& }Iu*u3WI %9P P 8Lw^Y1hPALvqh+E)WO{k.k?16ti*|+h"Z2eq)WT=n9E^GOG2 Qj85=h\E!$kNU 4탚KN.b"Jj[(u+LSzъo#|FODzi G[\8o,BJ88㌑ơ+1 go0qô{k.k?2SFb8:֣.${*H֗(џ/C\}>o  䌍=5lZa ,6\XY< $i<>_DvX)C;.J9)Bp8$gI'7`潬oR=lAsS殈[Jnjd.y:CIJ<:Rgm­iz %YO4%--8@* H* >n[٥"u"RZLж ChQN3i5czo5%,4Ñ1ͺ':Gv6 iA’H#kKŲj)Lɶ$H5 yZ;j2 B!)89 AV]K6{5l˒j4T ph݆\ /k&9#wM]ׁ< UǏ+ٴvw-4%H^M%eJ:xWVhQ0LĘ܎uTἂNJpUF:U[w\0b3$- *'X݊\ /k+ P}*Ldxm20H}}$oI1[[Bf4C\-6}  -$v({v͒Vn*e-7.E+'}Mn q9Wݽ-HBʀ2qeZI7xjɛV./k-,p}H qnଥim%A;;TOmfx˜t7"+eAI$8LfJ,i{uh ZR8'tqۑl7IۣMi-?҇;ˆc퇚.k?13V8On?5u1FIetg% 6q h8= Ykrm5jTSyN8R۝$$q {k.k?1n?5tM;0RʦA拸HqФ.bzrU=7Y)}9q֔4(; du#zN.UqhܩhdYB@KN7a潬oR7uߡkZn5܇"m:Z::F|6k=k?GklK/btb5Q!>[2R@OҺWrԑ,.sA=2B *ⲲH $ް^7v_y2sDsK. n B0QԜx %iZ\&&V-ۘ֘W)\Pmĥdw/6)mFeOMƴ*UI2*JBP#ʎp97a潬ݼ~b썥CQ#I) q!e e*=q:mi( oqHVGNõik?!;MMÛwuԀ2)A@ABnm Hl R$a$S{k.k?1vm>>j=4gߣM v~|TKQ%9.!]9m.GqMoz{Xޥ}J^PvlT[ͫR6v!v7~gf%paI)JNAC&3̔BQ}vjZj9 cu7a潬oR$ϣwOwO>{Y4K̒xGOުz7oE JVF*!4S8K.ZӼ.;-JO\/IϽrngUN-8ŵwm*`JF@QnW[7{ Z.aN": $dϊ~3Myw' zߋ:9+lzY=s fe`vb>~ 5Kq&>̦KO!԰PRNpRxkr>?2 ލka9  > 5icaz6Bn=ShIA t{H<{Y* ioY}.ߚ2InB#!jmY yRTP[r\CA X 1۸z8C`:[p6z@owo@Rq]pC%Qw\[нѸ[q$q`չ|ߚ\> 5JDwP1y6r+Cved~ F#ϼe%'tǣS~v5E"V<*FQĭsEbLeqRDb$7:Km6VR vԿG(U6G;&BltqGnP[=[v=3g)˦1le$$nNjơLJn+f|OpjV}JxqZ e3dFR+ސ̞(FIM/︪vћ+sv2xO}Sb:jfm%4HB80Os[U*f`nի-Kxf :n,sin8\+kbZDJҐ_lqǎ@[MM9IS,J9d϶jK$A},{2vʎyw nM% K[-*F:ko&)n{k;BX[92:h6}ɏ5sʧ] o>gσfCR*nbħ*Z8N ӏ:= "nwybilAz],BCl=2So)J=  `rR.3M_[ֽQie)R ٚe] mCo(tpPK6+kKHSBrZG&Kͭb"ĸH`H߭s q#*8^EMj=]%͆J]IBXRj*X )Sa Ɔt8ՁNs\ZNfQ8y 0^X*eiPɽ&Z:.Tm%7}.J =#iUGFpZ#[tCo&R9$Z:hPbSg,dQi2 FmX [\B@=7[9ǏNwO~jz\mJXm2۱cz@l ˨ {&}̀.Zu%]@t9iY ɯʄaJU7veӌcQ6d:'EDA1ޛBYEr3"܍5m{{(';Eh8ɦW\)RK@BA$c%l 'Aoc#FgJe)IbTX;i{v;ly*-+ c:2O~V-UʎdH- gkv4[;CٕIHz!FW6֗ ý8fv6.tӗ+wʹ1JBw3gpRX3,রe|\9;: GHmD#}ѺgpNJ=,J9\axJs`$mDm;=͖?eRtԕMHRHOY&[6 XLV+ egk4KYD&P=[ xкCgSt[ѩ枎HP]Fr(CCoZ8+8Rzq68:|SK-)RT:AfG/RbiUr&˩$/8>:.Zt6GC6Xa,JĿ%Ŀ%]oH-+m:[۬f"/ ԁǹWWK}|~j= 4K)^X@L sWKK|~j> 5K¦sנj/_V} 4[)r_Ya^J?Kq&OcPߝ{?.Zծ6aī/鞫Wd]! %j 85νmWr߻k9Tqv5 *8ْnWRON>1=\1~&Jx.{G=k}ohu™ ;OW-Eb&\ewDs\,)cWY'N}5\zeATI?uZ)iE"eJGO8m N7T:|wiޟv:z,tuQۻd,)*AU<&jl0Yg|eJRY'U)söV~OF/߁Q.xQ <4sm;-G{sg Ħ^xvi`XW,UMf6,qE33k9H5-=h&$/幋ŵ.'wrRZJd5k9QMlQt-GZ~1T/}Bܔ8t+R: ZZ,xx?K1=ZtueL%\TcА*p~mo5U6QY; dJH $`+d8Y9&U-ٗr$m`'+xVĤ)KN9#ȉ(vJ][M䈟"U;uZFVw#.rZ|(!llrzڶ\Z÷DfF8[B'* ʔE.rTm9 ϳ^*a!hXP,ݟol5\ۼ6nl'po$a*Uփ"|-a[O_چjΨiHGu\FsLZڱe\ݾ#QpPJ ܢOg;s6.ZAkI紒 uFhIR[H8FKR39.i}m?DHti\ܛ#hsڒ{C{eW7Q;GQp$[{zFL^$@S;΂ I=F@{a\[I$'Q3XmĘ6@|yUX3ӕlŊtVvz*En:ga/anz٩mjCmYwI[Q=y8 iЋr@Rl+")#ԍ}|IKҥ1ԗۊ&66gXWfqpy]aĻ@wVCikO_Ȯ +y~eV G9}Qr ;8S#6E*HwW֕sbݱmM78 T{BA I<: Z\1fIpSJ߲h$`ԝ?u"}mL&ԁtkSE_ 2^7fn۟S\]VZL.0IG R`&ikeZ۲]\kTV7$͜z0)~k6r%{1w8RDk6KWڔtbpXK,2jyŏV8VLnZVN5wCڑD^CmP5Akqc(ױ={&iRm)).68R_A|B XkKm2DuycKU6i|D ʱjSyӿ w~))#niqWKaM |{+ytrNI+ۖ 8ԻujmjQ+qRPi=g;jS^MzfG?=q#M*d9"A@myfَQl1l^pN [F*Q9=rsfZ)*Z,@[N{'8?wEm_ӎGzNoQ:t`2#V-GZ+FwaH QR& )u{/J==K.>JQIXͨYjIm>X]!Y;)%JAW쩯ɋt Wljnm@ND}[̊ir/EcBbݤ4sJV8<{RGIFJPΏ>.:=4nKa%{%@rM999]%^SSQ⢌'K}Ζv}qST(`6qdO858lƂم*CijmCr_QB2Y5J X< I&Wm]U`#DuC |n8H]Q]|ܾ0sRHP̐ڕ (úGO.?5uem㗖?ajOڒsݼ]41RNїmqV~awdZyp)'\Kj9yNB/ RZ&;(;<V+nZmc{\#r[ Gto$${_%kFkӗ1*%©`$!]]55&vo9y$ߧ+Э Zz ŧ|fʛj&NY$=8H-CݩGfӳ{6n9fQIm2p Zy>.\e55H&[9$R` x&nGXhaV?`דI$V7Gg7M=z-0㑲;r:bJ4V0wQNBjqۉ JJH;׫ԸD{7]/!:`5oi6 C:h<5 9BsG9xv 9\\ng>:Q<<5|v lƥ{Mͣ{J#_ -oxw*4AQכk:}[m:')@ʀ<3xlv]֛tm.3%w͸$):U pO) 8V} QN6lcѸL2jw}nN:Wehtʍ-Ia^" Um)O)pzhF탒{oz.#I!qpK&N[DX9*: Nrm>m/mW=A!Mk>޵"mύ R[JIH>:}ՏOh=َZIJyxx~}:Z5;6k ^]v \MGdf ae$. u P%9Hi7C[Ļ\ݞ_!f~a2ިY}U=jmwSwN2eҧ=)9i A#HI\:oG5#\T]]Ka[no(ߧD]3b~ϧ.x:JbZ>PCrANA ѓKv; t\rhmi)q't{p$U*_,ULdUpm!sEOUXBc %) I'qIЛ`cbgXEպ/T.zlQ%RЕ,O5'iAn`@%"iK$ *㢶\oZ^ZLҭpѐ›naS]ѓܬ:iQvʗLj1oq`g *F׺ݟc~D-s/b<|VN3Ri,-`F sԎug fQMjbվX-,jRSHN@arRi2kIVџTS^l[^J[So*=WA+lǔ#MMlZdxz>;^9)'8'yVH"NڜS!=3cKjyEвNP)F8+0NfE-2I^)cu|m2=գrkX>Z\:ZuHue'7I8UjO6WG= !))H N}ҀH=|/ySuvgb]y_ζ@#JIA SN\曓ĦnSKc-u%i$ =>Y2DA!P4I+% TAQ51X:iJyOv`G=ev)@*M)hWtg9$-goGj ۛm\t4SOӛ>Y.pnv`bÍ).`+xXup35ħu+ .('9U,*dySvcܛumSgXjHM:{۸JV3~sek 6ͅ,HZ@tq\xn ;2q]S5q2,/նpXzßMW] ;4vKe :{p7n Z}yhJ[d6■ =e*8>JeJҚf^n銶,q+ (RG @:-ʳo fbӱ'IZۃ}xBJRx;œQROVҵ쩆$6e)m6u[Y5Z6?DżKqRIq-n!9Z$d=iCV}S QuBsSͮJ]N8}G!8O8 6fYuN~n0m6Rvn̓[L;vcPOk -h%.2'wB-=8)歱T7S-q K*-Ps{Js׎v-1cqXia\20GN|'5O[s:n69^}Mʀd0UL\B לSvl*7~㴖rxq=gi j/GmH*ٰtiv.Ƕlc|7fҭwޞ;E=xRuGV~GƧvl*Nݽ]B;HW@σt)Sύa{'`WrX7!~>Z ~j>9KSVle:"376{) Z߹͡$q $\7Ni3x8 teCg~r7~9KQ_Ͼ6_tO\lEc:ETfD~I=dm=UOcc|m5gc腨9YgY` JK's -jew;ٲw 3VBppn,HGˠGyڵǠj!Ö[sR<@WWv>Z ~j@XϢ7Gͮ [ \bTHk ANEy;?TO짪ˠ|~|wv3}lwH$z.Wq6%z#yYt7܏uvGcj%/ _/H>:KGͣ'Ic"xDci!o_#?߹!{c|-_5cc|C~jf.n:u35%Aĕ-Koq:Vr 9c$r%@`zlGy]r|ՏՍ M˓!e H(gpৠ]:K8FYt7܏Ƥw 2HeiYmFP1t]6_"tOWvzD.D/98OUA { Ej5y-+W/H*^I '~4ӧ2\@V돡WpH 9ˠ|n|nZ ~jnZ ~j`4niv[7ސ &:.V#”PANGi!oc#?߹![V_ݏ}|"wq[n) !m80SԤ57jD]sPq!X$t eC`Y/܏-UKWEC&&CmTTtF٦Q #M9jed+l 0xl*n9!xp$gD佮gd:rR&e$!w`е%O2@8$al7/Q'+ Sm=_GכnǴldI"V X@ʐ 5 ̥lc7%cI\ІK[ cQ酰 _v7QĎ(v=U5r|m:} ΡCb&-Y=z`7/QC[ѻTE> G[}~)O!~)al7/G~= hcw =%tGw oo$9GnuJ>[ o/Q?[ؖQ⋟C>|P!g~=z`7/Ll@2^[l7K\_DZ!ʏ!ue{6 +x'wF2C>|P!~=zal7/UClN;ndGmGoC+ XIH.(w''tWuHl}SV0kR2 o$9GnuCs6!郰~j=02 Rw.WЩES{!r>Cs6/"Fo_L-XzHhn]?;jѻEwHs܏?A =0 aOx5F~Z\;:›tCI; o/QOY.›tg!W~=zal7/QOlWE6AJ.x)O!~)zal7/G~XMv)^lKYm3ĘoW'y9F8[>JdiBSM.$};Ζ>du%Yb:ԓ㮥7 ۻ!8Hہ?w+jk0os8uyWօTlvHqX\=`IT(C_{5gsD<԰. ?Q肽U;d{˸oGtOj74OjYA^Tz }gw[uۺ'gл'D.yk?Gwjxyy Żz8Pzg|n菽g|Գ#GӶX ĺoFmrKM+ *V0)BA'^?#^Cqnގ=;4Gj1wMՙڙ.!rZ\О1./>K$7I8U^Эȍ=nD̈E8?P{ p֒:W[u#Y5#Y5 ifl](0PF-[QHA$\j\n&"ۜr2ZATqQҠ{#4+d{n-Ǻ['Y5gz.Oj$K4:%7:7V8)P Wy{?]7Nvq{.z5-wZ?YzSt/!oG74G޳j9b^{]ڦ?#^Cqnގ=!hG|2mdӘsOg묥㧇MRo9],_^A\sxz8QT6r^۷i)dzt¸3_8KZ՜{9s5A椸̗0NNB}QGfТM:M+PU=ʏ<%;)qǠS>.V\:4=iT2LFFrAk[U"ai]"5â;D[KTÙpRG't7Bw;o)6Fו]n:V(qEC;ͺ׾$Փ8Tΰi-7C%nurs$>vl%Ő+yQjXaFlJ-<2/ ZR7Vt `nnzd?[7UU!hK-u j 51twgu7w@ ۪ 24zOM3ܩ1\[ Z[%sZPg+Y_Z"čmgȝ6eEٚm9Yiԥ9*?vT0wRTY5 =ٗrNnSeKTf9)cJ'?ue=H1/1&Um,^3œB^0.Wlnoz,N!EN;-y)H34cci+q}-/A-Aے%!.$N-G*cWWzy(0!;AyqfYg.[ǼӜ򊃊^JBrjN5Z/J#eb%E P-V:1èꥍzy)>oO_BF.Ӛ^ 땮pn>TBS\+zFEy+Xi^fm8-iU8%= ҕ`w+@Dp/;GsP\j׫7LKR\efYpZRyV25Dt;InYKJ֖ie+x$8HHV ԅF ;,]RɐscHl{PUo-H$ 0ͧ[d **-U+')ը9r{I+rTuR@3UWW>K}_QBHHXw W*aTYfkD(쥦Xb+$owAth S7wi uL}V C:s|R򳼬5*n֫F걍cRF3ykuVggu)(RT*)RVvV6B4bFÍ(+IĞn?~#TL5znqXW:G6w8 Uǰ;',q#R q⨰c#ZV45S 4\RBϫz)2~6r6hK('Uن]4]5BS*CBGd*,K+wGLsz!A 8\JfpEwu6d(sIS)<ڎycxd9a%@-NS#Mk{7дK %z3Hy ZS}Y|Ӡ.47nLenFU:Uӊ2$\MdǾjǢCjTe0O4*1b6C:EEdv<؆Lp +}-@B'"pVͧ{׳DuYcݬi )RkIh4>ڇ VСHյAO ;Ms5-'Ռ^/z+[wR/C,Vvn)u=n.]иj]$aIϹ^ulal(s$>শvKClzO:rTpWUrsNoI\~%|Kc*%|K5bc+Ѩf}. 6۴zr@nZJV6dQ-xΙ{?t!xu7V/b1kw?ߏT}Ä UaR7f4n*]10BA zF֍+ICQ)O:  èg5_ϏT}37'O땺3 mR#MԥXO|'9Kv"{B[LmO wAR<1xc37#T fk|Sw+lhmT -PNVJO@8pqz+[0ӥ.eZ+UM94ڛ QJd 3wxߟf??Pn oh c BG@媷?#~£雼uix-&k5VULZ7yk 3xg.>?SZ|㦽2~A%_j,ZwF$q) <0sS9QShq] kj{7!e $$$`qS m%mm:ܫkJ }N%:Kag>N9cqb;?v6FzdLSD\"ԥo4c]+iG_o#: ?QF6.ѣwf]8}R# >TF}Ki%D(9Pצ5֯`!֖-2do R ZpO8[ʒ-Ũ^̽Qwesx\ewJ>*Tq5bL%4) POzBAᨒ.StMv mȍk{x VH昺%؆ 3S\e<9gI)RH#4s܀sNn- 'UMNuvlwBw_Cw}JӣWE M]}~X.O (w7)>/=oiKg3vwM_Ϭ 7G-\?N(W1ק?FסCErwZt Ց&oO{`S0 3 ![#%!m!kpC;W]udIH$O!9InZ񁓎_,DqQBSq'V)Eo^1rx!-N]dn*J8`8e[;6aw+DƗ`4J='{9F@:IzΫԓtq(mAԱ*SNcIB{ 5ZU%%B0x&96WJw PDH?SGgMysHZ.pr2g:hƵ+W="auMndJ7׀wG٪v>ä!DMNm7 BVTwRFw) $1!ҖԞ\ԯmc> Q um̴қQmaRI$f.o|{MsYn*ӊ'%)KjAqQ9<)m;KumOYOZ-?ӆ~R{A-?i8Ҷo|H6<%)?Z3iUvǭ?̗aԮO }iU1$n篞2 [<;k禵(ג^Q6Hڪ8C-Qy+#W])?Uz8<WOV>Q,S:LIkZT\a*H'VҎ8ȧƕ:U&CaҥP:Fxgy@~2|NO~ i*o'y ^wIwNG:s>Πv^`D2Ty+ RaLS 7wʏ9=izLܽ*zIUc{)k%tyj=(b%jO* W{Z|ARmH9I#> mmnIVo94s')Ugg7_º7KC||QJV*Eu_AV7y_o>w "[?Jç^cߘ6G3v_Ю?g?7,6c+U( (((( ((( KQWTxr=|KfjG?VGoNEWU2Ȯk㪤M,T|N#XL*ihT< I 'WT[m6am)F Fs509>_9>9NmmGC%ť)IVTp8 DźZe"Co $|7hnu*#]܏ #P9~ڎ{f>jÃp~Jm+ϚZ[YiM4׼+N{ΜvYmyK:2Uʉ=fQ ?B۩:eUxOVIeM x+`uG5sEDikC}m$t㍕i90"Gϯ\+9>Y,Ѳэ(h\g'9g3l!9TH[xHGFkN0I%/nXI6~]Js?36M\ wP1G[O Ǝˎ)iNVP7q *.)J[$u\/BFRO8HVFR8wԏuD4L Ǜ(LNI(ИT9HOZ|J##JB+jA&C"JQ1qBR-PJTԴO鍴tL {2KY2$\sC)H#M) ʞ8X 3zE(?1VئT]1Ӿxꕌ 6tV_/obFkt6[]eK'$!(q${ewKO8V]AR3I=tmRf+ HH8@`vCI}!֖0-P " PcikܣC~5GqEpm6\IS \d^2p/KhVKa(FZ&TA^cߘ6G3v_ЮFǵYu/](Ks(( (((( ((hwϝ!ϖf㪋gi#չ<ݟH h9@HHuT+V< &[[ٔB,m{`SĀeNKK%֜JX JBp5Dɋ_"jC }AA>m+iIV:+%v.sW#N] %h'Ԥ9t)xIуi$)XrOXh4rOG}>Zh4rOG}>Zh>Ÿ-IhGPQaOgLvJ$(iH8^EױDLnNa."Lw!ocw8sbFyN31]2"E.뮒Qp|ʇ,Ϧb2\^3?Ui4Gd֋_Oi g")eqFdۼ&}BAn!E JGI arЖsm".}=c}1f\g\}:I@Q5x̿.QMrl~kIS,o XIs Mt!,Ьy;)-Chԫ,*-ҧJK6Nѐ(JrI9X/v;sq&\N-{g HpХ2FBօ YKjqZPtHM.5ZHZn&;ϼJd !I P!ay9յKE1)(CX $gG7xweGܔ.cmN)Do{Bxp$to)<@*Fz3Dž"j-H-Mzeұ0;ǭ^vf>ϵ鮵n RVɊ$)-!҂!)VmwQX͑g]&kKNͶ5pJy x #YkX{LH- Qr ڞwu!$n9y4Yt8B*T^T"훁ee8C p ʎxMJZ6էJ[KQ[F`)`c@,e]2\|QR -`|V33|d-PʻO|V(I'hUs*>Z( hMPU|kPʽqe^Ee^i}'u?ɧ1?5кy} h8iN,JEԻvH~Q$ѝ e=JEԹvH9~^cGz_Ю~Ls;$LUrQ@QEQE.h}6"n߸$ Ug;쬴J:լtѺLڡܚ[̦RJA#$qDŽSgZ/RmY54M vL Ehc+Y$+4S#dU#N+Rcpͨqa=Qnz; Q'A|>j]v7y w֌,d (HQEpʳV1pʳV1VȪZ?'˗En|uT.NQȿjNNR p]TҘ+q;]Jwru}Y}>#?U̿Ym\yLq+8upO 㰋 nC5ʖ% \#1_UޫTK+ jޑ [a\:2qdqz _Tw:gB`{ ϝ^SmJJQӌ0h._Uri˛F6JWz%$63zU|ꂶ ;MlCgJ+ugTH-bcwֲqCSSoKSm* !+VONJ2|_T}4p㋋1$o)Ĕ Ԉm0Aa@Lέg_Tw:gB`{ϝG0=_ Ψ.pw:g꣹?Uw|= g>u_UL`W9&+s~ 1 g>uq\j3r[e%)0 vMtl.,¹Hw[޸RK!AH'Jb :7RQk ۡ'*iHQE(( ()ɧ1?5кy} h8kK'R"*(h?$W?`1O Fٽg䋯W~YXi&Urcyfj @QEEP2z\&6W'Ӟ6k]SUp0Mq2`VCe$R_\d:gnz H[OӭFV- 2nUd >AOCoڇ^rGz Hj~",d:UI{eFչOmkwtm*)sFw{ 3Ӝ~&-pnjZ1*)% RQM|ҽU5:w$X.p+k(,QE57g?"=U|R}?FD9VȪZ'(IҙC:PN$)+IZE+i!θ٤`8if/~ W Md:ďsz{kwru}Y}>tvԶ;2r^4݌W{#Zu-!X$'+(8=*_^-?s{\7wyKu wRAIi-JPHjo+9Vzk;߫G}[`E5F.$EvBLVa ʷ@ g<:kYjYiF[I yJV fѬSu4kk\[9헔R̼9) Q;Ǐsmi5:Ydo!*q;T@g5 L̅X[jŸIvڜ^mY}(NOBJs%gà^\B-;(t|5#v$=W=9 hi},q\َe+7*ݟV]∍[!;P0J v$UP9 WXj6t4J҆NilZh4 rҗUv*!e-hF^**|@^7oVrJI9.vkn1ζøJ)9,Qi]3i;siT) "<6q~5 g9FcX4L[t>'n45`jIQk8:܇d ,tAk9F\Y.ћoO~RW I#Ƥnr}1vW~7+VoĄ xNVolY<~_,Yus.ذK/L[iAu|#ԧ8S;H!{A8G`SjFM͍sy.v(g{*ZzR^Tܯcii[ ۖ$6C'곞ʝԸt֧]EkzqT%ԖXi!mil 7@'-YmR] m[>8YZUAHJ@Kcu :+5@(Q3@Q3@PJ%0q4HzzpB% $! PNqJ x9)SNgAH(oٟUi[4Gdދ_O(r_ {Kڽɦ[+v%L_f>M5Ux̿.F( ((("-mzSX#Hi)qׁ`YIJT$%*+ଓmx -2q~c4b>ABU[O-rkUX NBa2'Y*e0B0wTU7.Phɑ:C JH8#W, °|QtWmd_9Fh?k鯖-[>_RJ:ڕl-h";t<ԅ!(JnqJ2Nj]ܴ$W6"Sy+CLr4˫I>)unC,7{ p쩯Q7=I0o~-u֥A'R>:Fk&2ƥ"TNVOi'&kL&S2 oxMn*ϛe(HQEr5VM5TG?l7QﶿVȪZ&uS)JO-U8Ye[/Vx{[cIz; ÈWAO&T|[_lD:P딘YFPLW\I) Bќkwru}Y?:ZD1u^i%ySK) P;I]׬SP/7R/1mֶv;qITfK TT$,)q57@sìom#0Ϭ임)j[}tY7oPmP\uEK=B{-Dt Xz5) Z3Vs |9Bsn)g)jڋPiwmϷ̹ Mܒ䔥KqZu HI#[uz^ky30mʓL btnӺ-XIJbMyM&80[n{qHqoCxqfӬypERw{be=n(q_4y4GpC?Ybcfoq)( po,acxP&5b Ôq,lH* @u@pޭP+땒%IGnq xAeN6I)P<U>]n-?Q_f,DK{紁{&ZCb?#S{EMC>|LZ_f>M5Ux.F( ((E{׶CNt+\%6G2+J zm(L_*pߗ#Fit2jun)?`+QEv~cw[8A'ݭIbe6}fFH{7P=mC[w -'֊VLWǝšB%+2AΓ)3iVԼ.:cx)=-Gmڮ;B+#'@Tw]-=@nFMbvzbr  ؅!i B$%#SWmItbԩÕ8gu Td +D#F#4i-o``v9 F^$jFR˄ޫt(Tz 8 bʫgֽC5pm|{8^S[[..ù99Kp GiJSaI:( Q@QEQEEP1?4>޾ӺG&O/RIk?:QL]ٿR}&yZ~`Z5?$]BrUףwjQ@QE.hmhfyҖƮq`1m/B0GGC8IV{6V{.1IKKqFSFx8V)"EQԚ{[i:v12*$`ٽ =b̊PmHs(x*4|vEܙ`Ðb=9xI> nJ%ş8Cp|{1]hZ\mIPIZiȚq#DW(0@&M$N&=tnI H*(VyXE%XdKҭiT5O+!EPW#mjtT9.|Uk-_+FUu_-O&T|} ɕŷ1AuUNu.N|OuGGv}hWp%pVĆHQI-*Bg<!:6Ҟ[ˊAg VR{%`p$! dv{#wx`paYliImea*%$88#K"uH%:BR2@'@hMLf,)=X$HKT ]![skܥIBAoJXYfE?g6_S+]%[7ݦۅ=уt\Ĝ8:vŦmMZC f+A:OOBtv~8V IZ4qO56y1"=<=PH$(w ##$V}7->>5W+W_16?f C &k7NP ȯuOѿ'gq /7ZX#{=J hSte䘝/k?ImcKq7TH('Úe9YM0l:?@*=Q;lڦNV 8p~+e0vp [g!* l-p̎܀GbRPb/eKAvo@d$dY"JzN1L VH;ִ\r:$6 S :Fpq,)% Oq;\<{f`vM#q=⬥!#`Wt%huf3ٓ- p\PIQJ{HJI`&WROi&3RcHm@q!IZH HjZd cBHO}iQM&p?)SkrQȪҶ駬ɭQ`ťm^cP-_ wF/3j&*߇z͵Vp}i҃A$pxy i~>L|v|\4\uŏ},6 #[k*fL iæ |u[o8)Y RZg%g3Mj=%!kR9# $E>,:P}J^H ޺QVX[ӲoN9J'רܰ j.G[/MZmRq<$ӞqGضk6I~2!ZOJTHI .P;2x}129d'q㫁/-&aޒ48kPm ?n^,ˬ 9qiRH'Úr ,\]-RI>]*^ܩoHQE(( ()ɧ1?5кy} h8mrL]ٿR&F>6olJ:{-?0-f._9eV$I'W-z_@%1 cM5p[gumg8J6{>>me zE_7v$9c>7!@QzE^Y33D1k"dΛ͠(=z|݉ wl֓W%ĭĝ32!?Pt 9קMXmECzSPCRT@ JJ#g MAzwTj W{2RrjZdQt+Xo5# %RbK?ow"1rF+ڄc#=yRGL]V iVe'ǸJMt/'k@^f~pwBRwIA BqU%Txe-Z3M_/# c^^udJ(=%x7Wz0@8S):Xp8TގYGGpA[A[,iSM9з '>gӘޖ>mrNm"X}Q^|*>ӿXVkྜྷͬ\}>QF=z|lM31%Z} gcN~c#Lې I͊OA{Uk-^›֭^SlxN-9M/tRk'/NEWU2ȉ94$Qdaze`~l$Ȕy֚fIm՝)Y(OJâ94cG*CnLC<|TR+Qkwru}Y}>=K]dnrn-[ 8ez0U]C4-=ov;m%O>n[7#:U(N9r">$1mЕ$,H/|$ozeo-/"cz2!fr.He qRJ#9)9A9w͎d_ngeKm! ;Ğ $8jG@m1n#6HJ:v͙n:FTҥ(#ŕ(*3v4S:=~1cBaDd(*W( 6)?m2z^[n't XXOz`V1Zv^; WhA[jn>cŲϐh0px>#U.ovs蛳ISs]!\VsBSRA'&mp02`=5^N:Oi/m,·JB@ O8R]5xi0Z4 # WhI8-A'}ʭ(\Ǵ]{XdVGnBs5yӡam3fM*eR 'w_D̍hW/Y5MJIBVAOFk;;xvd%}έ1#ݪAmKt1§d} o㬂A`5w>?bGɻT3cZUd:2֋K3,ANP>'kM9f6ZLMNqj$vcp8IY p1M?%(3 -ϓێtcx䟲ˆδ|뎥XwTjĻ* -tUAR8eDuTʶ3Mcg" Hd=hYbSB!pޞu5-$[b-3kedﺁpRT=GQ{LwVbzow,Rn4AB @l0f! %(B%)${ Ђ!%j^@W'w`Lu>o>u!ieaSH$c#sƣ[݇KJn`ĸSaCTˏsG :ae@c99;Y -7T·OVGe9Ųҗoë}ov-P.-ppnFGi!NOalQMW}B;QTPyԀiI d:;wsg8N3^$O树hn%ޗ*y ?VPP #xᰢF7 cۯW54f?Nj5mRB %qʊ{ou*= SwS 9{3Z*f911\JRc}A zN7?]^[-lԖ{hCZc Ζ-IeLFvE1VJ H7H;QQ>veE6rw='Sz_@F{Om1r{OESO}iQM&Ӷ駬ɭ1,?tͫ,|j @?+=5/WX4ר?c֩1(&P(( (*>~R )VQ[u5dF\6VJ?Td=E`SQfnJ2{tyngü@j2sdCќuHyxM]kvt6=uj5r-`[ZR Nqّ\hK5d'F-*-j;LFWڒ܏mե_ARpԙgw}li .=-S0!_EF.jPF[B}LE (N+>lI:{.Ic̡ԣxs9ih;7uX^AL[e"t&G :a儒%IێώqtwGìH33]TS\eo x?FanA=J͕#) RSx[uhTK<2rN*rgFmD-Cj'>Au[nG=i=1|:zputZrDD-hZ[Q # :jeN2҉įڤ= ј9kzh[B!G'c,VI9U5䱬>S5ו%DRvoI ;2 '%1AmgwGàg}jrWa#Lg6߳$Gx?ps3Z;2HIJG=YH|)(1HRJ0::U+zDeZ"j|dF<J. U=w3]\olǐh^u~%j*Q F#PZUi=f"a0l-IYW|4R0T~p? K G '+Wc+ "%|PBoԅwwHM%k^Z;yi#]}.iLŻ-ϼԠ2wwNpp@8'}#sŊmR;'[B 8PJJրJp2bMbۖϘnzuR x7KhW{:$Dk,*ZU+n)< ɩ+gR\/z6y\kM 旔;D(n "$ D䉵_M4u1]#rC-c=*HT<nvm*ܠE^ q@\F [h1, SW3y-'A|z -NT>ۏ%t)Hu9ǁIe\kLK(DďlKEiR8rxxkFsN,KxL(d5\塣KIS/T%gRrz0wgNkbe$I{xfN*[m+($%/ܫbbIuF{02)A{QKmuyO0[Z֝-Muc:nW.M(*;<)?>Wj,YĤ Ooj=JA?ooMUlOYMZ-?pcA?*5/iWX4GYߑsKڽɦJOye(E2Q@QEQEZԘǐ]AmGٚ)ɮkGc{__u*\ Qo$lmW]J?eyZ~`Z5?$]B^un A.dz3jUQPQE`T 5l3enUFPH{dЛ/O6Mߝb$xqգH $V)YonەRK;D*b*ƒ6 f}K{~z{o5#z7Yݷ?*"{~6mV,בښK8|wڭUt6} lZzu^\lp\e>!G?jvML܋Paۣ)h Zu8&枹LT۴)KOJyN($-40iGV Z"sYe.,aA^JQZreQEP(N;M?V?*lgj:kWkOg#c׊ҽ9]WS"7ojX͡քhZB *t[a\m[EbDE22A<A6 Cb=ΧNr9㚂򐰞ӟ*bx29>yPع1lѶ>;.SsX 9#+d[z[A-NCY4ɍ Ԝ n@i{;٥R4S 6TnG|5ZR{sC`8t;$ugRib[&BBPFBRTC)# 3gQ9(ǜ녥&Cz͠xk|<&I*KuTl.jRZq%!I q5,\,]4ř.ImVKe@('&ϵͦ6)ට\Adwӓ*哢m`m@Oر@Km (Yv> C(PROtkЦ^ʯr.277Jc-Yś{Iԋ&wQHWEo0Y!6aJZ}s%)nM75rRdCWG%!h<-j;AHz 5VM=d}6M.OUwj[c6hiƅ]ͫ,|kԫ~TGv]Q\(QEEP5?ҫWhECQ$+')P,1jY8J"2mwp勔nԜAjzB&R7zq{:[ޝZR)$OQ௝eLf>̯>y&#U_ߘߢ7kU*GiGЛg5A`A㴾7AVOX䥯>ӗkRދ1-md  :7R"ՐԠۦ(Š(Q@QEQEL}}u?M>)ɮkGb$}R:S}|EܒvYi?R~:R'?`1O Fٽg䋯RP?n]IAa 0ȷL* ((sMsm;3^sg:2qGt%X"=RdYiBSx"mIj 68 &.~2җBJm dcud[{52ݖ =sUwNF4rخ0?LOv˚o!#wK+RR ;%3/.ymtuI<XZc􆐲[fhE+С-zrx YJL9ԧw9yBkB3&.QE(^ǾzgWj1&7&մ5v&Fzr*DUb޵d.l88JJ,]k%Yo QD;;%[APN-{XCtVNl"Iiu6BAAU4v땱Vڑac $F RF:7F+wru}X>p Rq@|{* C\%b[\6`a,J}”a 3$xIY,<]ro[HV$#Ձ{ >X]F .۠.?Ҙi`,Z6x.%04b,< ԤJ!%;'( yOCl4[A\$%YSNA'SZBw@Q{{F TGhr2JDenqxqPͻUj;Қ{OH1+fo2H^3 'yM0)?QˬyAjH}uTp{;5cezW1KX#]`mU]%= sItRマ^ve\8όVJQ$RIEjE-A@C$4wTÂērrx$Ãm[BsMk'j+1v߳O,_K OJzBULͥMC*<[Ѭ Ikt0Z[М%$cAqS=lTI iФ`Îr+Ej&L)\ u7G;pɨ$q{ 7Rg4^e.-@ġ l7@{'ɽϏ?[E;!I*HQ@Q=cymI!4c*DtHb&DiحQ8YKpHostÂמ2g.E.hb]sqȈ%;GL26 9D%Il€)HI## up(IZW0ު"U\Ꙏ뎭.($xOz)^.;vmCb<.eէy ʚ*RsFGMq}hνcJV6hEl޾ږ!νtAt!e[^ig {eIF3Nco tf>}Sa'8=!w~̣p|ʒ>o᎝,ϣF|z98=!w~̦Nv-lf륵.t6\)b}cK16ѿ:{>p86I@YXej2!ᥭBU4+Mxmm7XV늉%p|u[I,@*((( c;~2iL}}u?Mt._CZ>(N+y$Qj?R~:XˎHqIJ03ਧ?ڒ?U75ǍyZ~`Z5?$]Br^-t ۦH[;*QEƮyi#lk2F>YQT^^.B/^ڸLa:RBb\%$C;|5.v{tK5ղfTw'$M WqbxrS*spg/N%RxdpgeuYq0B0rA3۷]>!Ŏ%J7d5$_y51mq1LB}1_?l6x0 鯢,Rt's˗߹6uݪE<>{Aa_CQeN6OKDOuݐGFGѵ+TQEc;Yңk6P)QjZi^ebh9u@Q<z?UNrJ'reyZ[l-p$-dieͼL޳m[^SraKu{J\F{];2VjK +*F8\P=u.\S踯M; 0Nꔞl8,;]ѳw&xٓD +HwJF:I[b?;\X1 )y=^jF7kd[.+-ĕ,m*V%*%$PJnߺz5ؾ̇6DJhoH(`T*GI>P6Hڱ+GEp3:qsqj?Zn^Epy7`)I[F NrbI9 J˝-grÅlx);NoЌKm~RlkYPn$ecx@=Up:N e3 asrxTR7QHIQrmCjݲ !RҌ#%E]'p406._jJ6=u#t`oۼ:4>V(7h@}zJT;uUh5]; :eJ, I=%8m Bakxw uo}!c HsIG"ppx1QIqu6Iy\qtǶutƘ`wÅ=V6ht$r҅{ƚz˕6Ȭa_GRPPJJޫ-r<= CI$ lRmI=GHn3ficM5rG~F/3j&*߇z}?/W|W2jǴ##>|}&U=<_̦8k͜:*6BVRI%A\;L>FN_%V)ɮkGb7$-.OUL+ltqkA4֡'㪥;)WQ޳E)')mU-"G xjm[(EPX@5S^vwq|4uX y)ÈCUʵ>܆&CY}AA[6zt2b}۟'I~>5p ψtAv@(eO-O-v e9=P~_0B%oE|.5RxS>S{}ͲHC$#5M=ftX_E!6sRR⥏{9P[9q ua'Zwr:p0]2+Z㺍-f q+X {jm+[ꍦjé5l6 !g!wR '==R0X#^bիEȔ,ȐQERB(&;njڿLITbm%UjڿLH?NEWU2Ȍy4beXDo}ۭ82KXRHe\Kېl!ޥ%HNJH1P&gKZT*nWOoMtN|OZ}QPlZJ`deKt3r35>L[7m! m*JҒ Rs0:)ozַ.(mqlwԼ)x;q8<ڬV[Td- m㥵- АH5u PʈBtŤ2RZ'Fi)2ɓ,?=91!J}H K$q GW_#cvy'c_~'Du^b$ T@{Kþw$sc4~Ûmr.KFCq[s|OI{nZX i E/sjRNR)P:wRb|^yBNNo0o}KcI^' <& Cq(nC_/W-Gu0\݄6x$9C䍤l*cSFE;sfI.!pBAH+.ӄT"t@)Ǧva4_h4W^1/&־;~>SX3TGf{O+4wZb|ۑFEqwZb|_OdWu/'hMۑFEqwRb|_OdWu/'hMّMkiYM ~XFgE h5R ΘQFtJ٦>&ZASÜ悰(tz*>/3j&9e}tG>B}/3j&*߇z]_LJ> Կwf;f3Gڍ_rBK; p'vAhkWT[a.i*:Id\VxA4Vq1篢_JĿBGϬ}+{_ >Z>x WF"zǽ诡JĿBGϤcɟcV#yI>Jڔ *=Z3D!NfYPh,nM5#[*PxQX (xC4Yя|JXZW"j|dEqա-g H VI=B%ߕwUZv3 LyiIO,,Ny<ŏ:LeƐ4K+BV+Uěil4[RTF=NH;+wru}X>M&o̓"s65uéf:PNp%* W&:y"]rZ p\]Fws#"{^V FJ;p!*$7srk1t>] : o{_W5VIN+hem)J9+JwHJrѺ)R,քR.^LK{Nuv~;jM1=klV@R 85>%~ZC䃏[r0Mu uQPHQEEP"ꏬ%YTHڣ/";Jk߷wN=Jkiﷄw*i#kE9d}45M_f>M5 rm;M!SN{EMzo=j(e(E2Q@QEQEi'Y}޿'%Rs\7pʀ򔖤VQRJIzA n-g O`ːShO5!>'{#Uٲl-{'~pms8lzO _=ABB;%ܮ4NQEΤ3gڔ8Hu>$|㬴ctD՚eu}Js$k8y{>ێ6ݗVBDC{IKrBIŸ%nS\geş *34J BzAT((( c;~2iL}}u?Mt._CZ>(N+$Gj?r:Knߒ@3+㪤˲|9-?0-f.I9G}u_M}R)n'䛨(O݂mr۽T=4^N5͕$;)EeUx{mj lsYli֊S$ =M+lnw]XnXzEsfW:e'w'=5vİk~'LBY~dV*{ q  nRR*EtuiãɤoҊ\{#Ziի 1"}::4Q_ bZ ]\%qV\qZ#sRT㧂*gc6hiR~ǭScv 4QEpLEPQ@QEQEaD%%J!)$^h mң^m6%c“E}hqj+@謹*[p rsQHՑ4{J&T{x̏kԴB<K(÷-5^^\kMԂy"|{ZNP?T9Mmb۩dWmUxR#w@1*lב-+SI1g_g6X6 1KH$q>\ތ %i {i+%fwJqJ:rdbm+k{? Vqc)dNH @>PTCArDѫRwGF|$ނK!F@V(7VJJRyB|UGV:M>0BK^z=R $#i{uؼ]_^y(~St$ӀAgu| ^ٍTܫuԾi`d).7*T<"./ s[rUA}NGK&m(@qr{MZ|mH %*l*WN&Q+dQEEP1?4>޾ӺG&O/R_U&^_4b+㚓.yZ~`Z5?$]Brۦ&<n; ΢Y)o(-{x)` eLtVARGfԿSY ڙ8e9PڃRg6QB?Ϭ\~AyB[NY)9eBm o[-\f&aIMJK pٳՍjdke!= J$2Jh䝠$(;&,gdnzNr+qy74='9DjGzNr+y0ş4='9D~jGլ Rʽ[n--L;1[*I8 }f;|lyLOi˟ VT Ԃp(Jom0$hA]}tiZMSA8 Ov3UGeݟT;(>gj좸ڣ?e~Rv3T Ô7H檀4և)>wN=;JniO5VM=d}>Mh-OTåm^cP-_KڽɦJOyhB( ((e!z#JԕV F 5TK@#n@3JhrlD_e3d8Вg iJJ:=W'].uCuAAR2<AyM-26Wgz n#)I¢\hS26-;4bj=DotaN]ਲvS-N=@\A N;7H>^!v"RF |w$ON9zr9DA=h]:nvBȹoX֛mHKma@JGr`0{ mF1%xH˕-JH;4hu85ݱ lٱ 5kk4[kB~;0c)ߩ,EdfDL*QHPG bzDl6/|^KJx" 2oso4UmE!h#tmnnjPRrzRfO28!EVR( ()ɧ1?5кy} h8?̕CRBj2?uJCRmjgh;7uz)E\/qpGDJyާ Gܠ:Smn{p '9>JĥGmjm){= ʏ ^sn7Xj\[e-h iBmG x A'w{`b\LX״JrNnd@#/R; 9q4'*yZEg-[FR'! $z F JǔvlyyN[NFBV$ȨRvئ<\kJO%R? Y-lez~ߦX5"màẓHKow[x IOJ ;X:S<p b@Vh }뵨*)3{vV`ӑU~ >2#M5.w$UmVѲ$VmAp%7H|bG]u hRhRP-$dq *X440Qҙ[IJmM() R8mu.N|Ogp-Pvc"/(jlB[i.yiNEvZRmv8^4"ZBq¬)'xc"I- QS5!8NpÀ'&XQ 굲!-6ktq5q:^^#l4䤾$)) X+ *!G$#YӶ!n{t/KӨ0mf#x>p;ֽ{dwfC}r[ReDzNq3gzFeil[mJ,(+ $bhڽ٨3۪}a*nc>[ZP'$)KOtի^iƚm~i >gKdZbXr4 n|=bmЛh4{p'@5fEkۭ$͚)/ڜ ZSRA$dm?jXޕRlJiNJeiNq((c"i;2oyN:T(HJpV4l<[C6: %Ť!n/}j1+8) i ܨvwN ;AMoVwZV45S |q0?'>F/3j&9m 9IϑKڽɦJOyhB( ((Vh8ǶD:6:rvh %垲@zj]c1v}i{ޮzx*)lxU-/bwۮ.^|lJ6SndutsWfXml,$%#4BG~ִ6c|l&uWWćny%p$kPHx+W9|;I#ZF{=^~ԶЇrTpOâ`T˳nw|cȟ,g2HӴ\r%)7TYUߐeS"H.PO5ꓞbulbczB(Q@QEQEL}}u?M>)ɮkGg7$!b?)R3%2Lv 'j/?)S}UcB,0-f.vxWg+nsz<%VRZbGF7ԣ`>zъ8N_OzI*ORmDMeLxJ|;G6ˤ_ \ \g^fjyE\uѝdON=EcNi]ffjpy!r ReKV ʞ<ZĂNRIF4#fI¸Bqk".^EuG+totx *mot\{Ӳ9Jsǔj&yd]!ɽOU tXmXWNOp'h;n}v3Q]ykem+eH3ui9窵ɣKZwVѯZԶD{aG{1@J:ӡ]&mmIٖqMo{Xpzkͼ Ez#X:b>z{jޮCbk5*KcSjJTIX Z,Dt)-q>us#~;1QU9~:GR?N||$x Í2JbwVm"m >*e'*Ab6-%̎`>8Rn/Z^2e~tcҐ7|!'o>EWU2ȏ934]!XWET܊AjQIES"׻#Zj!lϤ>sq۪!9]ܝvy/PEcd;^6*jojv(;fbR-V^Šs:z+۵+MGs-TS9(HN@ʉt淏ē{^=ȯdoi'RkXۣC3%sZ1)`)*V7@ddx 9;^=ȯdqF(I܊Aj;5fϢDޕw 8Nx]58b-Okx~X vD_+ZZ"l#\6xKGBGmg#N-6&=g3ZVL%Zi`o&[pXcKgV8b)Z)iT0U_C}ّqrR2^)lcRjm_i]ܻ꛻Y %y>tW nRn޸}=;Z{BֵEXvgN-:tc>B&s~&DN|~[OlvlkhVoEw4| ! DN@eJƊ z3V^jrw*87Gy(ҵß)4V/!n9WmAޮz.3"fkujOKݭnOVL>Ӛ+Oc6,g-]+Q'&@>5_"-j(ͯjKMs+<a[fPiA!N$1R&{s-+*u[ 6J`tqXP[Ҏ-n4xwx.ZqeS'ƑWW[6&eɦP7 S#|vwR|F/v%;I2ˉJ#ji.mR!ܦC$yVjrh[ڧO&S6|T3c]3ͪcG=y?e_#\Z¡h3EV`zQYxgAד:;k #T*ʣ^?>EWU2ȅ99fv֖<1)˜-' AEK2}ҍv-[2m6Tc$䜞ڊ2OU;Z=bww']'>bHضms\nR [JF8 uxrmO†r4$3ޡ 8u'X](wXՎ;>Eo/ BX GoKϪḴ9Fu )2Tz889~OWQ݉򊁁Erb}bOWP>R-2M&-rCBSJ]؟X()RpSX2-F9g<G©~\ك ︔!OnTjzb)=}{Z3ͤk":4i}.KG?¬;PsܶM(aF?<<]\\Z_K[яPM ۶=k+Kxu 0gQ2i.L^5^n9)iDz)KcShEh̶- !@J0u 6g풛 1|H H;VGk+~bf;էҕ$JX?4 S|TW/v'+(yEc6N+wb}bꢹ{>^QGv'+(+wb}bnwGv'+)!@qP >U:֟Ա}!ZV45S <sB/3j&ybNE_!SV{EMzo=j(e(E2Q@QEQELC3;$(ڞZ@(N[4mr[ `磿IOfD77MW \t`usޔ ^?A|JR| #m+f 룵vps8HHW )5=rq7'M7JelJZpA'. 4SR2!۶ I>N6HwIeɷQje#[& ܧR16UB޾ӺG&O/R>ûuyw_ 9%IhҾ2}n⦼-?0-f.EVB( PL|~IrZ^#w׭i#8)$G/TJZnj:B^KCs] '=lۓN45ɋ[d9 fEBJ3wr:V'GXʤYNEdKc {U5$irS$0, R3rif6ixyϤ !`Hr>m (T_Be) 6}SgA)=$vpwmiMr{ʋC2s4l#m`8s2 z2HpЕzFFksfL\"4(lWB|ìK YmBAQ 8xT&574dLD0@%I>oS)Ry6<5[T?2ӳt7U-II;h|5#[fbn2HR 0kcArrx@r;F%palZ<)< Uõ~T/ge6Q\-|9/[5܏FAzeKn qRr8tpx+hmF.B#MmJ[Q8CðIWm7|[ Kݎs30G)ZO=D Ex(IHB)O`K`x^(`)>ӷe;=-NZj/bQEA!1E1Emk<D~*Mc8ZTSRq^#N=5,nC~"Jۦ>&ZCMQWTץm^cP,/B/3j&*߇z B1¢MEbc5Pv/Y\qn6x85*nN;覯9-Z-ˁ/gz\eJіyenH*Z$k6m-+FRNHA9P>m=>mʧ.Ӗ]Wacnd B HRHlwiɅoRy!)>|{ʅ}>m=>mʬQ&/iPu>֣B)t@T}M'O͑lK3[ۣn2]XJz MU_Os[2=0qmK6 a fnJS7{'cf6*K(ou%ށ54ބ㜊QWEPQ@QESo_iO#Oc;~2ktE*qX,0~WVӟN6_e*X?S^cGzXEVB( (E\ٌݿjBIrIJĀBJ8r0GRekn-VRGi 8w`zck'uFԎMr[SlIm%* -'OڳRsy*'u93տi$ [A(W8BTU6[]Ô2``?eWtcѶ%?jy5ĩKp 9 _B•*Vj%Rįr6ߵ]bهM]cܤ\RenqӍ=X3A}q)$wIHK HpH9OO+NSX%e EV`(ꇌQYx6J#lk?oNEWU2ȅ44]$ޟSr9P& j hjs]"$ncMy}bצG9W~vw']'>|v{\5X6)noK5eCSیp^L}@pIHkM5 LFi4BO'[/+4w+5]8Ź[n/̆R\mm<B]@Q wEDe7vitW5-so;U瀨.s&s&vwM-#LTd2OJ;` uk;9 ^}̺Թ!ÄoԚ ENs&#O+ݒۤn#8RuiVqߦEfBŇee eJ ?95 mVZ"͗vrMЌ !2E^M{S+;?Tζe9UB=Gt{]9\!)61  [I BRse=޾ٝH䲻b]PmԐ|Ifdַ60̰k#ܭ 0EfkΥ<&}/I8%ݮ[֟|ȴ]GR o0r8"_-ﰭMlU(zCw;h8(FAlcduOoZ &1 <ޥ83X:>MVTUh>T$@]-+ŞmHb6}f9mn6G58;F ՍE&wlV0P7ԢVռH/}}!lf>x+ ݬ㙥Т6v9r9QSQnaQSb)>}G71\`pE#\ɣ\ɮ0;* }MMv`vQ@q+4w+5فFeܮz_[6y*ďz* iw)BR{'BG&>{Dfm_mi ^lӊ}̗6N?_ͣc ߯Y-ClN܍MjC!M X=N9̰'hZ+Z%) ]݊Q%:HNj'Qk<򋫧ZusZ Ez㢲=P } pc^+4)Ƴ#Z7"j|dB| ]kq%un7z3{jB-tV+e%l:Ɩ+AzL>L%Q=*o~J]ܝvy g.҅ݥ2֕AO dOO r:0woa-J$儅'))R'2'u5د%b|۲}5 4)Z=*TvT3SЄp9ls,NGr3vGa ^zRq|wS]QM+AtӐL&{]kJ`!)HJq+Sۮw誸&ۉf0Z˅k`䣺W>+l_m64Cim(x)F r$7o?eWRUrnjoQR]CAR{Vq$+Gu8Q<YAI4691>vkj$ !n%Ԍ1V="ڿGim_156]GJ?5[Q59b WpRr{xq *NV(^4Jݛ^ݎ'8¼ug&9Sx1&=D7ChҚj~Kn% %Qv:I"&4D]A}Re\R6\҇|A JR߄+9A\vOCp=RÃFG8`gu=5c [-dDD-# m`X#rA!#KVMrv C ioN2JTHӥ=Wo^Jt+Wo^JtQ\bw[}PW?uد%bAv OU:{y)\KRsTa~?ְ~!N%5ҶiɭPU3WX41+q(*gc6hiR~ǭSb(&P(( (:'Uj;&x78MQOJ{&rT=IK"er6~ȾqNFqĒ馾975k-^2Hq3.ia #cdֵkBHhjVVΚҒ'9BA>SHP\^oq LZMZ;8aYV1S?Q&z 7= ?(w ??mSmOf>I&K* NOHVP^~smˏt! dU[nzvu-*C)N me%jĬgi?u>]/ѩYl(XTKRǸ`Ջ&nJ5C0dnC*Nx$֜2ke5?>uW*m tkl}=}]>zE Osa ~^:ىUt1\ʀt ѽ9]WS"O1rO~qn-E͊[AO.&ct'Qc.eYCnKVEƊGSvtjk}8‰QYw oavִmK6J9}ŰZVKjJH RT80+h*g?laXV6.KBJi^tva7v祸gJt$)DppĜeGIZֹ kM|!(:T*X!Y'Ӻ;g6u Sn;m ; $``+ѭڂcH۰jsͶ$!ׂR@$@;xVꂰ+.;njӖ&zl!0 9h]9L$j}5jqeB9i8 pބ'ᤔ13᪙3W@􎦳DK!3)԰A'êyX۽Ŷu) C,I0 ®UĿ}]yLw=1*:]zZ%ûv}ŘL.cyqT_]lڊ&vylip D@FARz qJ{UKgc][z)ޓ0OzKag)4ӵmƙ|8j65#\.JYIMjG&{!GN\^(vKk׈T:BwO묹BV{c٦[ \V̠Y?unB7K, Og$ԋl^TMrTI_SH}EKeΦIM5Ux̗`EWQEQEF #=TV C >A47>W׋6mj"2}*)AvU-V=wWBVwPW]5i7M!-b-s/p>Dh: '=śΓfB^sfv;]u`) iSRTq9wEދ G~+u)'N6%lw̓}^Vp@%LlZnGPIPt-VI7T2Ed F9}oc덊^RJ6UqwS`xU;UxT nKW82S딌8k[ )[RAcW̞L(@y2Z' ?I}tQ]QEEPQ@QEQEL}}u?M>)ɮkGcoڶ?`l4K VO'⦼-?0-f.N(Q@u=E램S žXOYJ(<&*rovw֤֠)LY(>iFcw|Gd9lym7rGAWI8 TkނELX/OGd nJI֝5߸M}u޶HOc@yDkZ_=]o&^Sb"Hg#u `xۃº( ci]Zv-Ksm%p*HV:8(x-ty=mlt:ӈ$5:2jAX}6qiUm,XO`oFG j 2?Mj:8PV}Ne4V[1[zBVgJu r/p Ȍ C5Ʃ4dAEHQEYxꇎcl?W5GDl{1wO5GDlӑU~ >2!~MMOqws1%ɃUխ~,[4\*c8/$$쮥obg IsrL-QUŲ]B3dj:zU"%!֟ep\v%<xc$rj-O$ț hh$h:BT$|#Zs;؟-zflt>Fҕ$:c;*KiPq^$99j\:Ld%w9DW2\W<9'Aklw{}w[R]PYvТI9I O]E< ݴ-ˌyȕi{,V\Z8VF›eU3M7`i;lacax$K5[Sd/A<0pGijjބˍ~] 쯟ۜZ,xJrYA̦.VP)n$OvCQG-uiC]OXX#ā^l^lؓW3؆> MN[+LlN$-2 S\ŲX4s(k%2bDJll% Z|i"/,m=v+YJJ[k# !D|?Uf ƙy@s߭?)8Ui[4G֋_O(\ 4ͫ,|jgZkB=/3j&*߇zQJC 8 U4)ͺK}t'k^kĒA7ͻ_oËwFIA5_>;o;f;޾ӺG&O/RIk+'UI0)Vlj?nHQY  TmC)PU_:~4(6g8e] wF=8Zc1 .+ڝKcu$VC^-|:Z0}j-a|,[[!EIb5 rN^8ۖyT[nGuCQ<jԲɗ׈#ܢKڵtC#.R%qU:KcQEzQ@C@1_+'?ֽƶHzr*D);+܆̖ېl`- $⧬Fm'S)oNZW <CzUgwwxUԻ:>,>T~T1m{.Eɓ2u)r$I JB|4'c6ks3/s`Nvrncqup(`T to{Gt5돽P=>~p HoyY+uNS)QMtSć%w_s+uo2V=!+ qK䣺ZPNm67.n]ȅ.%! ZAYT:' j$8keա`#5NzVU7=xCROЁhMe\K%A} RG5ݮZ=K8䡧Pc=uIޡ=/kK1Z҇XZBvy$^/z~{}|թˊ9W6)$d5姃'vݕ=D&+qX$us;j"%~NR6_wT_VʘM5 ROK+؎Is=a $8BX169ѨtwIsVbZoV(7ܕ>r8'RyI;TȗKɟ~mRڃv<%,Vyzg¯ O`Աu%Nns# 7xrduޕzCGP/s?5I\IIARm(tcX\|>Hzy)R}-|:^(+qpu/8hie7j!wp<@N3hJ;\|mQE1Tg>0PH #~* zZWRr9쪠߭?)FvoU9t֟;y5VM=d}>Mh-Qih*ac6hiMPWTm^c^[Z<hB( (+˟OU 1@D߹Կ USaRYFڵL$?" *{)8+RHZtSjƮKTA\\gxu)_P?Q)_P?Sժ|((TSjƣSjƧT QqsT˷nw|5JmW>O{o[lܡ,.)39nޭCn2jIZ- (`S+k6M1j Ноm;3S8fE"(EPQ@QESo_iO#Oc;~2ktE*qX0/U#sSP$ߵU*XsS^cGzEVBE*u[yՀl{"ӻN׮6ۍj1wq%^x`<:zk5 OCXOI#쬂;ҳdQQ?my|տT%3Ycv%g#*}+6O^~~5J͓FןOZH[A?P'' Vl6>jÜ.!H^5РB xS֩Fkߦ/]֭XFmՅ3uջʴUgI&"m8Y*4}iͲpQX 1EwNkdZXrn?+'?zr*D+ɿTլ7_>kƇr.nTp_a#I~cj2 2$]xK3!),a+tN[5B.Vlbdo8 p-̤+ea[]KrYGGk+bqr*jI{l$NPGgy45uNpұs˅sN>8<67IddiW`RPvڷ@3^lQ_BA,d ,=keZ.ݡtU6$ GF;0OubhSIk&ӳ!jYu(L+E -gFIF]VsF~+qxcyMG/umMeԌ^npԋre'+%T<sTgy6Cn꩓wK{FSN:ɪEͺѓlhVuO´A(j *#7z?PQ-OS3{V_Ź<\[(sqR;I)4{^02m 8Æw> rm5"*%ZOanLa@ekKu_R; qW+,mf"K>LaA]./(! :zE:!\̝>i(vLԶǪej@XJ;lX$\˗vS!i㔒F{1I?°m3WX-s1 =9qK[Z]mkRIRGzxV|QBB( ( #jV)@ʔ҂Gi4i'Q)$cYaJiP!IN<1n}> -wmvͣ[мצnCI@iiOQ9}4͈K Ø+nz|k) {Kڽɦ.[k3A!R{EMzo=j(e(E2Q@QEPh(P(P(P((( (((zNi|So_iO#] ֏)SNI{rs*} G{gڞ?nS^cGz_P+!EPQ@PGEQQE ((z㢁ꇎ`l]RV鎡+P rOz;qiNH 0%r:Iq#t֍~[K(즊S2 8+ϑU~ 1DmɽMTjq62( Q]8sS$ai IMD규f)#y % RBާx  vO]j}5q;N +m8y7sU=ww]'޳ʉ,>z>`Rg=`ϳ7zNޱ}=mm"-@u2>z@PlbFTi)PINP84oQAueOQ'ן}G'ן@KמkQ/'ןG'ן@K]ײ&kQ/'ןGG\bnaR;;IiГϿГϿ%kX2Q7'ןG'ן@K}Zhzj'$I=ZkZ4 ZEE~^}lϢC:ogPYk!Dwqg+ljq"ͨݾr/Lf[nw x"r^e,2cPKmҕ S$F@8eDV R8 >TQ;?<Mi[tG֋_OgOޚI!S&m{NSǸ>ƚn{K&- ƱYܖmRAQJ<@Kdc4RJ͵Yk\i󢄛o4smzkG:+!te )Ԥ<: @*smzhJ" 2T4PCGN6^*e/&OkG6׭fstToח {JFT+kW:)+V{m_t!c1U-<ȹ|pL6yg~.rruw/8tns9nsVE߬*M.C G-9'=Cdg88Vڜ6l_ZKN02a,d RTT`©w '2z+Zg ׬fm[hgk)7Mz4smz5;h >b j>4i>@ɮb$iO]N<ę9Ҭn)O`Capz{N ~j=5tw!]u=t6XM?5q!WY-1I]W}I5XUj\41P?E{~ ~j>4$`aOUctǰުVӨNI%Vin.|:cSU^}ś=}/- 65kǡWϡP ZP ˟6ዪzG>m&;OD/fi,RJH Mj'thhZ7RdB({(q< hGjøG+$%S8EʆS3 :e 6OVORd@5zr*C?ڝ"AgtV~ڙiiqSs!i,$opP'9OI#RTZ8$8sdܳZiU|OIܟ?*7²M^ZVAq蜟G]-ViSrFUe2ߙ Ix4I8]]׌m<%B4yJk([ķ8bT9<\!J)Yi)# O]-&|y4(;۾7{+\-j )2s}0e( HG9;tu(y| U(ЛϼDw H9Xׅ/N<#*DcƟ5h:Z}||7E/J$,$:EF=LKjzjl*C)WVŷq.ᄝ7rM!\ovujiW$M2$w7KIVox%C# gS6O|x5j7[iv0m8{j()(IIsg=UB*u-s1z tsWgM>V̷ - 8*OVZF>PO>, %;ʟ5kNJ)O)Z )$Jz@$^ F=2b"?x"BⰜo= G6ӷ|AaLv eSnVlw (Ď(HK ~5S+;mhRN pGL3SkezQjI3|l&;q*?<ê' p6Yl޶#vޔJ 繦w9T PIAQ#&T(6gX% WN7k:RF%joRW(RPn f0Qطxvs* 2ˁ\str*;+`z?e ڢtʕr8P PrT0<$;Ira.ow lac)TNݩW.ҵhԖZ]ȬE6*e7֜2+ JH'ڣ'px@ g z51&MrKJ-ZT#TC#>M57MNd^?1iSZ<{Yv{O.m1pꒉ(qaT ;xQЄNbͩ"w؝(bC&9 9%Y=|P1\/kMif-Bb9;SJy-q;VI$ VhZ%F٢F3oh2-SnW_HvږĄS2Ӯ,7u"s"*);Y*AךF×r'e@8CFx p)WY޷ shH@nOg*km#\ BA[-P 9Äxu].F#%*[R=Г-َ!,[eXHDp夫V )[& ^\ C*))WK;Ywr[S_,H8 e,EN(>yh#m;Kȋ"b DDnMFo RS]i[CjQ ˔z"\)Wjdrin6M=~2kt:E*q/,$穚=D J q7R: ITZx2mwqӑ)2OFٻg䋯q 4^v9{uђwz8+dk Z =2/ZgTƸƹGn[iCҴ:x`J[7 i!ԀX#kKIΧxҕjK؎A|ά /Φu-D&D*j% n-)d'更ȖmlOlաv CZ8⢠F86΀_GiKt(?p_"lP+m ǪIi;÷5fznvljeJiqegy- $䂭ܒ A#in~u?s󫯺mxn{N#}[ZrFRFEF(} ?WZ%\#C{Wpӧ[jJP2幞egJ=:3Wb]/Z]=Ejf(J̬nkZj!5>) ŚY=~?Tcvl&ʝ#c2[ejJN sJ0{i 9h[i!aɅpG)-Bw+5bG=~?RuVǟ^0>5q-/i}wԎ)gd\9=~?V f8O%xk=S*|wVK`W-ڊ#3" -%JP #ҧuxk=;h8ٓ嶸[c7-RZo ( qNM<đZn7Ẑz@´oNEWU2ȭWu>'?RmN[)b-n(¶lTʑ2mW[!ׂxӰ-wxlt*sZ=&zڝwl.<0X|mY]ѻWKRqsR%JZmRXr;.RP⒥% 9b-}ZֱQ>^ ? #K X%]~<=uvZ:'GݗMmao\Vn[Jzg#igklwSגI$S[~FG#`z'#\z%VUIQZ8WXn^K]<ۉRԵ6)TJxUI1JfdEӰ#IS1AJG{*P>폆\7tOj1me>@PXͥZH8B0<p7+c7.9qsAJ8CcCkö>=`\Ojt{53IOyw^H~j9%Œ'@'[)]oZv92pmƥƐoI@ӻ6\BvN iVFY\}]oaD`I^ VV;;hyi+:-f e62lt`՚L^ts1KJR;8X>;c="5 kGDGݗ`qmM:0BJp8KC5! Zs+tgLHot?#\~چ]v^Cb۬ Dk% A='|'!xK~JJ +z!kqq=`/[;cZ:' ̺?_켇J/sћ4y!I-rqb4Ŗ%V$8/!ŰAX@fivwHovÿ秦tOjt~=y zGLX7yI%IIRHPSfL2*ʕRITbR|7v:cHotچ]?v^D BR6R$$*&C>DW~:vCzVЛkR\:qyI5}=giOo%tݔmVʜR\/Gmr/M'M-}⾲cO9Eli![\8P()g=u@':k׬u.]BVҩMdy4QINݿB2݆+m) J+*46gnߺ웊8(QHyڇznee3sNV nl!eiS#uN2rtӗM[6mM2}SJ qF?K>(QH?]?v^C>10c_4s 5Pg /iQH?]?v^C>1B.w{DIq ʷ)^A JRwS:E7lK[ˣkm2V$3ƙ_Kӿ(m7BE=72|{9.;0Ύ).]2-C)) UcH2̙2rp[=݄/mno$e@8``TUm7BE=c}`_鹗OݗϩdD}$r[.В!> $xcxqN^a~ƿzj _vE"m7AE=72|{95^d\Km R›PJ \wnw2\aI KYNFN@P'aF"v /˧g1leygh6ÑVt:JʒA%`קkhLR.SjC:HSwMF`;KE=`iCqHwOݗϩd+f͕oh)oy*.yP=wicJi .w[Ct6&e) @BPߤҿ8ߤ^zA+CEM˺_켆}Nc'e~ƿzk<~ 7uJP~{Ss.û/!S2_4ۓKNȵ)(PzR}rj3W:II,:am=%CpElXMNE<~e*5 OښBOz xslcJt<+dI/-KäteHʌ +²R9cVѝZRIcfΥ+Ք[>{o֙@t's:IZAvfqBI'$#)݌cQ=%E='FODoꑖzUTeѴ6͕\ݶT}F0pslC;B9LuANw\BB;qQOaGe1<7U*\o}Djn %MBN rѦtMj7-Ԏm,k4s!J)@NeGaG|VUW9TxSPi{w>>V/ gُH}G6 =`}U6*VTK٢mȅHⵟTq rVիǺ+CvJ AWt9  =c2s4͇N!ج-РYu7h^KufkϢ6Jz'o7+GG\l W^UkOvq:Em#|:>u7h^K*I/9W3[Ds=}ZΠ/U&K:妽tb\_-I4󐳳WSmlI(ϫNRzk #q`wק@cVJק@y"EzGO'>>ZT\<>>Z\($z@y^V OhV {*>>(} |hU(1ϽƎ}e_4Q@yUA}e_4Q@c{Wʿ}E~=WPxsW}e_*ʿ}ECZ|h} }^y~({Ws{*Q@ʿ-`ﲯE9罕~Zye_( s*ydW(w)0hlyricue-4.0.12/help/C/figures/docs-wizard-fonts.jpg0000664000000000000000000006635313053456656017031 0ustar JFIFHHC  !"$"$C/" i !1"AQT2RSVaes#6FUq34BCbrtu 5DE$d%7v&8X:!12AQaq"45BRSrb ?Hi`uWr<7cVQ֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.Q֏''Z>x.>ne[inWz0=ŀQu(?ᅢ J" """ """ """ """ """ """ """ """ """ """ """ """ "/}ck8^--FHl17$zOqȸvéu^O]΢%odoc{:{vr̋5MZl'NmM]՜TrLrV7` kZ8]1qӬm]u97/Mۻޘg8҃""" k^>SoZ/x)BQu(?ᅢ J" """ """ """ """ """ """ """ """ """ """ """ """ /; 7RA-R_3woZcMٵǴ] vд-]6x&ӲHv1/\ \j:oިVJ:MSa1Ɇo8;;4%Y̶m_]]%UWS&yWs2I$$-ڨŠ =U(wDq.8HA.νlCWjidPǎRWzH۞?4,ވ=XVk[h`G_3>O 8 ";SY<ؚJ4JV@b1v_f; ]5- 6 l鲽%ssUWdg;1'Cߢi[; *cSyA4ҵ8AZܗNŭl#RY.T۵ƖLbํIi.p;#Fl:^V8ݰGQ)Gӱ[$vMphTI+iV[ZjY4/csO/6)>3ԾaNK>fq+݆9؞{.vOlh̾{*2/-?_P_:ywN+c{k8⹾[tle3ʹ6CsWA˽75nF{3O/Ǜ`؎v[UW:}|OM'XY'c,nvHÀ('[D/Sk}yZ:(dY ,t0v;S]?_L)]vSWFXgBJ豺d{mˡd0V1nIK6CFsFpBHXZY]JlFh9"l;1htc4[s֋rР)F}]J4ĂR j+ve שlj=I:J7 ckr _Y(~̶m_]Q]]%UWS+yWs2I$$zuَӔzOޛu+/1oo7u9]MFl=6;7K&67*;TKNFZH8=&AĽ-f,Pi]9 {``FĶ."Wj 5m6GwR\cq_bT6mp\x8E+kK}=D˽a餯d;Gyz~țAw?;F򓶏'/Οh>Gyz~țAw?;F򓶏'/Οh>Gyz]n6S-Q]./Z&kjQɇ q8 &˺==W&#U7"g@wߋg:wߋgk(\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" (\7l'\7l ux"ux" s֋rЬDB:HX +z Uk+56lݗ a]ataKvKu=Uq}5|,sY¤3v^U97ww8d[n3MjULO7{U=aSTQ;gz[+R/*]%5L~9qsx-Vuh,.VzLWQ3},vCr=rf181^9H%=r[(|`JˆxK5K;L6S|SmJH|9ێ8Wn'Zug|.M͗4iQO*ݡ:HZj[F%h'(R_+F#{+d ގWdᆎ#9' MC~Ԍ旜5[L48<gZ7d6EJֺ "ZDk[lsoCGt w-i ~ROX"y)n2D] t-5~ZCM[9eNFd{G-c!!uTE/ߧ l45B沩 {d0w zʽҚkkZLʹZIϿLYo,UTK0(*$|R>R@7X\H'3$ptP=luu]3 ܛr`KHGB5U%lʛ%j5f-c eL= ypp"WQ%,USGIdpkX2I'v&{Op zՐ k%v䝀{wdt;78"M4uB`{d_sTQVVCղ4ݔq 14͎_z^ia`;cxnI؁*7M7PW y9,?p÷c$(i5tpWH: fgt,Q9WxN-2WyL5`=W٫4]mQu2s xc<1QmwnS :H+'mIGNF1 hmP4$4Oe/g.'% s# es Cj_ um!mA-;;{8 Tm#HCb}S2^$D9 KǼ ָRX[ p2v|-oI#8ʍ]u-QeF叐CXƸ\AJ j(hzbyeYAQ%=;䊑F91KUojx?=b>z@\CP3Ԯ޸g_Yg1eEn  "0a0wuekPOBf0ij[Ӽ0hjD洹䣲mvic˪gLƖ1;Yؖ;FOYj̻Pd}U%lmnb t/#.q+o2@8Wh練qi?{|+CsQvuUxH_#{s#ĒI$Wz) Zu_|:ehUPVOG7"Ѹ XbӪԬUUUo1N>-v4D\$DDD@DDDAnjA+ rFi \B"P 5F[)+d:X)cH s Gk<cD;ezWh=B:-孊bǖcOZ\AtG2h8ᯢIB#uh' _@5ij&vqtTu= JIg=;Nr̷jZ{%}VP) )'B7iy'O\浻pJCzWKh%$4U.9991p2f}V_(znuU̬;}Lrv- "IwÇh t}[ܭmxhBc; ` g#]h-L6ApSrn1;Z ]qݟh-Ix蠢]$9IJ]2Ȥ 4DっW|i\x⬼_^_ߩ[>A1<.A̭>zgRURREY]ADR;FN@0c[jUV\j_=[墧YZ02h8DݦZfQZ)QUWl7cOwBjE͠5<1X!v8E=iQ1O"4:Q:p60L9%}gՕ~iCpbé$Ա梖FN$9](;]àt.ڈ 4e񬭺˩YhZ7 (RZ9o8I$;kf*=3{Slz XەE=ƴ1K599yl {}КrL5}%4w buJiDwލ4HxeizQ i(oPQO+б$cs ZO[V7]E ٔ2GUNc$kkI.gcgxIkfiݦ|0<go$YvvEIJhid(q4;9Ao'9WhUiz;}m6zkDj]#%˷yvI8]p+OY]GiP[`eCf2$tN_ n4>ֈxh)Ե6FI q8]e>g~tRCE_M_P A#8D ?[Iwe ٨*$T46Sȿx8xzhdښӢmsҾYLQ#FKoƌ?W胄4ӚڦuIq:[i`B\aސp3^" """ """ ʭCǬU[X z(zO gK56lݗa]atܢa00eOi*W$&w٪gD4pxtqRζ6[HQM;=lih|ʡ-TSCZ@`09{]הrUp.ts&4q;rp^ōph}uޯF"jLfxzHysxjeK*㪙Mqta#KòI1:ypK#!vBŧTɩYҾ=:iӭ==(".v""" """ .XͷZ/oSSUOɰ7nK.oˀu%kETUURdu'I%<8pA*"ɦ/W,5EM#D8tktoz+C+< =CtǂɤӛIjk6RSGRl|<[ɰ\=Z&MriO _O*q7:=jmڋ{c^M+ 9MrC9pò qI.5]CMU~p&(xtqQlڶl-YUAW%-٨csipWe]$.8cN,mf"=# ˇ}Po*"r n.!d t+jIdZRkfOԃ(}A,IĴ87ǁQkgzK\`e;k_E!p{gKkT:fTMi 0e-F0:k$}F.;q2xabJcf\"ә*+&0o -!&QU$j{L .$¦f4Tsva5TOP>U5Hˤ8sAzݵ p\C3:y$$2)sTs4]Umtκf6WˎO&#oǏ&uķJJ-R2J\@ R is]՜ EfWI k/[=-]v\-C7g勃H nzGP()|61qYuEWorLHÞM4pe>)cvq[>&˃#i'x3uөΒW[WAOh1F\C_!bp JQޮ"KUYhsLF0<;=[szK\NW^SƆr\Zi eWMs5h=J@*FYд2qz2J*5VUojx?=b.1{g\o.3,ϳߘv\[u7U]7([d_TXtLR>5C0A%G.aiTړg,bN2o`o9qcl߳) -;nڞ[d7I)>7cG&xhd7Kgw #M'M5Ysi|x9H Ef98H(rw *$y{ =l0 ZuOu%4RRn1M c* a1ZuGꦭ4"i:TSuD\ DDD@DDD@DDD@DDDA킧NY*Wso'5T>F= yFf_ Gr'xU df{G>ڻkڭtTp7v( 1,@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDDA[X*5PIb\ 3Yg1eEnb*niEyJ.J(#*nAϦ5?f7xfxCc35 vWIͶŪu}Il|ipỏmN5)i^&JȄZ ˣCpwqit{nř$O}5.-1>3w;:wgУz9izVk3~"zǮq15jڸ[+w^#G#w\8.g5+=<ԱPo?"s!xk{z-:MJq:pׯZzꨈ@*5VUojx?=b.E.'(g_?T>aoʋr &xL. a-n-]f9Zd"7{T0m˵Me[&\jCPG$lhˉtk@PEU{S=\B{wB ߂5 iMTnqRʖû)Ex`᪵3dPsk Y>^W@ћ]Һ 5:iQH#3ϸӑ_'@o:u;|{? 30h{\Z湮!vCpŧS{ɩ\~ $*M; $t^N/PU״US=u :ISw™oER 2z72z~7he sL#sWq9/7(| QQ~POCSUAgzaYgAcWOcVB ߭z˟߮z˻,A_߯jowYH~޴.=K.-br.|)sJO wY;ͯ9KySD\׼-myݻʋr nCiƇr nEnkRT^6Q)t:? w^>y0KzRxSw',A\{֗]|Ŕ1wڛM%cow?OsVB ߬ޫ?,~j,oU?5{U0TyYީ*~jz֢ ?C^o[ϑ\D7ϑ{}C?hL[U rR߅;.UH=eV*ʭCǬTɽ=CW(Ac`߯;䛩0R*i{Kjz=Gbԍm\'Á sOBңJemfOLjy9 q=[VM\ݧ(UNs"k~x˨P9{Zeq;M#[-[T=jMo$o&8-|ទ6ҶG$Л*?목.4,Zre;tr0:v㐆ɭ6֟[UY[^RRWqg\3s?}v/CŧR{ɨ\| ,ISSQ<3 htH=!4e'b< Zu'|r6{N1*LtԳ  o`t@hUxe7Wn43d}J9R#xe/MIV)|ꗉ HPC=IR)|rZإgR3kʨ<:إgR57: n$*!A؝g؝g;*͵G: ͵G: } )͵G: ͵G: }/=oxm/NCS{_:Rd( )Yᴾu9KR)|ꜙ rZإgR'J j^UB=xe/MGV)|6bwFPPC5Z ME֊QqԴ;F@|@ɼ1 !}ps]NH#9Gu:\m$f .W~k.[k1~aoʋrW0]'({a0Su&(@dksђ0pβ\s\qGc>1 Tڋn 8rӤL"|׽cG&r p7X\O Oh/5  PMypJ{*W$Dlc"G`cw{<@=)V+%,OU5dfJJZ(< %cA;K$ZHu^Gūs ,SƆ;9c<:ViCtإnicXPd4rzNi*3T4,:g - h;xU.&TJ8̵Jgln:HA.DDD@DDD@DD4˱oͨLJtU^Qԓ%[J*qA|9T[\P_iUUaVU8Ax+ܫAz Asy7>봍mVZMU@vRdgϊ76>{"[Kq\(*"A4nd4AYL2S%yMFJeyL2A^WʜArRUEʒI%PPV\.*ߢ\.Z4*۝d55g;k7~W.٦Τזn[UڦZud0I9$~݉-^֕Mzzm-ӨOq[Q#2'7tK_ӎU_Kdi僥4k>[rx7V[t?Vlݗ-a]ata00*k$1Z3IEx1w̸[Y,Ζ ϦʵOjL,oZ..ݱES\U_bxtw{;r͝LꦊmE 1M=zcY2D%qs\ZZӟH2;kbӨ}.)yPr.~#h tqv,{:=-Bwzffs1#]q]骘L//s""WD@DDD@V3f# Ďo7 UAeܮ2T5MSp|E6wÝ`vC<1ШlRWiK6쌹 $k^擸ws2qu,E6klFܛ%=klh/3uCYk4^jO(yxF3!fik7l}>s\۫hnWj* :[g)eU<,3 64;WHӚ>Z}\ue$Y^DXr`d" """ """ "" ]j5nnjO:7ѷ!rTޅq(6b=B\GZ6EXkЫoB n?U!pE ЃͥvoZWegnԻ$Pw7D;VfzmLۨ& fT5Ho&2 gBY-p-dT*xj^:Hy99$ʺ])r[-x⧴:%}3s\8<{h9^պö;Ysk=ike|s c ( 87re+le;˱5Th.SWSp7*UL&eБhJD@DDD@DDD@DDD@DDD@DDD@DD(>ͩ?Lf:.'Դ?|+fZPЫjGJ U +* ЪTA^A{ax^U U.U/rzAl* UT[ǥn-F*wXT WP c{d{XӼ{@tt6gzX:X}6"̃63ԟ~tuζ3ԟeJs|&]o su7PGi~3GW/el/fx?V).V4 2G)y,(Iahojt)f&#sq?3ituv5֫:m5ESX⎳^sћzzhj樎xip=>-73;~#; s8FA .DZ #ζߋ8s?Wm=w3xA]i/ygw3M*ص_o4n43d}J9R nk[~-Ⱥ<}ڎ"[ڎ"yUPmj*E-^EąT$(9/%Ȫ;F2"!TPs^cQuKO9=E->E7}3[H_Ĵm#]]3|wgn߉i'3O~%ȺfMA}M->E2G%ȺnA̹=E->D[H_ĴL)Z|As->Ewׅ纃s z->E'n;Z|I憃h~uKWRh6ێ"fB/(9S^vڼnIKX]AM^m^E[~-Ⱥ9L96uwoX!2j}No曛C&.>anwy>mnc~0,=6?E8ni$-1sݱ+] s /Y}~v\ wu7WE*InZ+'~q3rx=p씗u7UjbDxys9upVGW%1;?}bMf8!{>OR ]nZSZ|֬Zw#KJ9ay##s{#+jTu8U3=53V'(\y[|]b|[{FSrѹэќ7';}cC|՝7cX{GzdDZHwF>t:gDoM1~3E[]%omIj!_D[MM².*]puS@F9<hwptޢmu6ֶ1+ă 'Źxgd """ """ "" e7u%Qm:qͨLIrcp8XV *VU ʲӕP'/r (.o&ϵM MucUlt5@pZN^0A^S*A^SyQ Teyx\^8Rq**K$PV\߹G;b\/ݴV;R0R\.*#d׶Ю:)Jr%aZZA#!iA/.^H.GN5z~ ۮwgJ'Vmcx1ǥ0Qt 9ߖtFgz@P- 3SS? ؿo*.weMsu7WDE[Msu7Pr]x7+\V)g72Nz:8+ ]U4Sɚq7Oa}}HGYYL-Pܭ\j$7'R nb mSf&:騫#0?},|QTQ5K֣5=+# # qF:qvݏ Zo~Kg\l5*loacHCGh?u]Zo~KgM晧Cv<> s1DE lDUu]=-}g0+Z81;#WWD=Zs]h*/7wվJ[&4Qw+*4}&L`Zo=wY$r쵤v8 }9#lL .{:I$VJ)t횧Ik;xY/. w)`C+ """ """ "" eڪ\ ަ3FxTfjO:7ٷIWřj7\YJ\YJԅXAzzMUշzzmU =I^=IZн8cdG41O\-wJLI͜]$l8]磠)FקWݴޟ[]l-LܖaB>xXÉhkp$?e'R(rXkw i|:fpۜ4M#"=1D✏i ZB]ŨlS׽ӶUS`s8H.u]4%=YIi1]),.[+e7؉'`kq[lCK^41kieDl1e1i 15Pm+srO{yYv -v@㵄I_5F6êyW+ۥT&8M&Mp,9#C^RTgJ ɶ٤NR9g WB#ZюҔaz7zƒaz7zRPgPU&RVT9yԕC,`m6RVPXl7sdAXwZk݁)AU[sZ*atQVO G0y^h%4qMMCS#op^7eq '*҃޲uEqUvk^z\|}9sJw(̬+ؿnCK}c|健~k>[zmXgFԆz_,~IQs(& n¹9=fukærRB50%R͝j]SSvuz:*<k8}V[k*JQQ%L9GT㞺bSә[f%ݏl3Ê}=]STGtG9UV DZګ&Z= tFي\gvxg lMzZ0S$`xÆ[?Y)樂7GWLIH{A- 8]/dq+-81Rh6|}Ѣ4ܘ_GOwЗ"RDD@DDD@DDD@DDD@DDD@DDD@DD(>ͩ?Lf:;|ړζ` U- tPޕX+ {J5TURRBx 𠤯 /RrRC¨r gPU­JǮn%܍c ەm{ I~ :WMFg )޳+i=N/Cv3e?JB7Su]MБT.Ǵ==5 xPQ4RBd i49\Ѳ1$PZ,J0p#D΢*ǎsxy*"z~dֺHh-6<㍲\$~Ǣ9bݶO%UAc!\2BӺ}18(?UD(QÔK6p-73ueEG. xyiZ>-73+[cn'}(DE%4:6W u-Ysy&@fӺX㧆 ڤIwR=*Ay\|̈R} UW ӵq{S|]󋥉JJPs1qC>.P꿵]0HUbBP>.WPjߴ_WN*ą/}]+^5V[yT$(9wV5V[yΰJߋw:([խcu:~ҷήWAz~ҷΧVV[yԷoz+~-z4D\(DDD@DDD@EAدnq%55SĆۍ R:k$t\"ʶb{Cw]R2edtѶi,8+uzA[oClHcIy%zZ&%k$1:WUSKS5,UxL5=K:Fpq ,iS|mGgR`ӧڏΤ{/*V8r9@r9XU 5ʠÕ{J; LaɔrZƮҖk-OeVHe=U|QHap%nc{^ƽkZA#S*A^S*P\*7\QqAQ*IrEʂI** T*\RII b`HIBͰ[4wmE,w)i)+DN ~r c2 {#=>I=X+.Gj)cOwpnqt~AYs5-9`7ϖ;VQ)(e  $6PݨPS\i*Dc{j~;qqg >y.g˗^YZp!#oTgZgQS+ltЇTt8У}^W)?yù{-iijgNjt^[ti CA"w]WMZ^akA]:f8:|.eX=E35`s[J`FC,/8kI> PQ1K)7y5֖y/Jgaϊ78.{M5MQc'[Fkjt33a+6bi @s洑 =A_Dfo۵q=%Dc0  ]f43nM] @v9wi8_ivm]@}T3vM磀8ᜬevQM(֢bc_]r ݳQTfӴñq99 .᳻%n6j ҕUt.lߑ,JwpA h5%_^umaTg{T,tp`aVu;%_6iD֗O7ܟ+0 s{xk`^N}t tҵeRPl]tMtҵP3]t]tc ;RkJAA<?u%k<Ɯ(c÷``+lgZmnԔB?Ddm%.[4`RBƗ0ޓWk7vF Bfw-G#[Q2u ,ltd 'w|V Lg ^t[MFg, +Y޳c] ?Ru<VWduIQs(nFQ-Gk˧%}Mv[-~ݥ-z"c=a'juMGri)LtW 6*gGؼqkX xj"t3*!|z[l=gq7_`ڙEWyO)vⶒEʎίG:}c~\Un79;K=Ɠ79wk)]~kjVkv=_&O,ǔio;ݶQ͹+{S188?8S1i{?əqWVzoT1Cޟl{>=̺U<bs|ɼl_VQLxL|N"-ADDD@DDD@DDD@DDD@DDD@DDDAړζcki꫿j?:ـ֫T4+AW*7jTP^7TT:JA^ 0"xPRWTz)TR)**ʥ-AW P[=*pTmݡor6U9T t }^?҅{+Y޳_ьoY `5se,FGQ^]GeKNt ä́ IEu؝KA!e )(ڝ檞 T{Mk5: M-ʨt}հfۮE-^΅Ѭzv{M).,Nhp g;Ax-fV-STq}.SwYrkL㧣+O딾Na?RT9b/GO딾X+O딾Na?RT9b a?RT99KQ劈2KQ/G* /GO딾X+O딾Na?RT9b a?RT99KQ劈2KQ/G* /GO딾X+O딾Na?RT9b a?RT99KQ劈2KQ/G* ¹خzk}:1XƶFKHp'd+ح_cK9aھ0[~ee" `5b̪#~?2 !~eT%>m* OG~ez*5_H9֡9k^Cn?2DCn?2皋ݯ$~eR*皋ݯ$~e{u_HʡU5_HsCn?2DCn?2Pd̯c'r?2D~exf'v?2DMCv?2.>ǭ* =p_8C~?2Q!f? _(ǨO?2 Q}|a+SjGh:~g4wZd h[me-(<< =+h Tic2<C =4=)aJUoiPd׫\&g#">\7RA?lk}}||ta0X cGOO[9Y=gns\ih.,6o2=y&+ ,x}|`XGÁw8foV*Kծc-%S7q##Avfˮi/ۚi|3Z7NZ7V-P$ ut/pE9DpA wq._dw8 C=C[82O@ʾţA6o26M^:b7RުP킾2!3[8,Cs8ik5H=|67!VgvGǂ YjټʧZlehulyїk]=,sB9F-C#>8d{D.zPDf|Zr u+*fdQSʂDQu{s~ӥT@jYyPټʒcW.IA=`7^Xz֞ټʈkݱo6ݥ䟉1԰3~کjmye|NZ~BgUjuQD:]O]S=y=y6_K4GuP |յΒgt7\q$`&/]"ͩSSHAp2;#INiXz֞ټʤuxOleH.O[7 ms+g5 -cx;zxT:h:GMʒ}9{kwb9o;oɜaqjټʤh{˓3 [fZ E \bX%swz8?ڲL;}Q@_4/Ѽto%jۭt,IL7hU1;{TyZ%7?t'V̓f*gǢ-?y]<&/ >Bzkﭻ:ݩ⦣_gԿ$=՚颹Pu[KvwgWO/b,z6o2=yJi;6y(49kGCA HZ/75D]4ոSsk)9C$v'(=yPui ̭KP-94U1ne &M c"zx{"`/p ĕc"p*5CHLqN);GS'=bcXTFAV3)} +.q[}MYĬc=%gqҵ~knh2V8CpZsj/PǶNڻu %q3yaTǹ9Ǹ~YsmvH >;$4p,iZK'kEuEs1RӶgۻ]7bbiU8-n5w=zcj[42G$sNaq:Gi(tƣ_nK]E$.ݍtnD@]>7[5z9eiuu4C♬o'$$rʢ//Ϯ57yysp1Κbt^o1SةTK5/<@b63.oOc_5Vz g5[MlB4H!{~Kֵ%F Pņ};e]S@ޑяid:Xr,wֹDڂ S%Uڪj>:bz?*)uU' Pm1Ss] wb08ǵo^n^kK鷻ysie9LO|exi# vhkT#vb>{\wk"(h]5UTU335O*^M gԲito$KIˆZ[u9;uT >fEXnÜw+u=%K꣆MRKM nv< O{mTu7d|f2+oul 2i^x kg8n:M?٬Sk<1ˍݛOqٽeè2]% Y&78o v@=dv , ridMEnBn'v8=.[ppWR\SR3jUT6[ %S^y86 HkDY~2NsR_6ugZ2K Xb9ݓ^\Fq^8lu7ٞZzVԃ41H[N֓na'z+lzW:P[[a n汐\iqsxOYX!6v7uǽmVJp +b*i9Xᖇ`H?ul*@Xhpsn ¯6߱_- m߱_'/71KYH^c^.7ˬAo1KVs;j.շ9Ki74>؟- h*a:5EgItTQ}me8sCev7qq" )=)cn^.7ˬARz?շNˬAumRx>aYDv(zpxB3 (E ϨT4pC[Ǫvtb)ŭi XSBC-Original-Maintainer: Chris Debenham Build-Depends: debhelper (>= 7), autotools-dev, po-debconf, libclutter-1.0-dev, libclutter-gtk-1.0-dev, libclutter-gst-3.0-dev|libclutter-gst-2.0-dev|libclutter-gst-1.0-dev|libclutter-gst-dev, libmysqlclient-dev, intltool, libjson-glib-dev, libavahi-glib-dev, libavahi-client-dev, yelp-tools, libtool-bin|libtool(<=2.4.3) Standards-Version: 3.8.3 Homepage: http://www.adebenham.com/ Package: lyricue Architecture: any Depends: mysql-server, unoconv, libdbd-mysql-perl, libgtk3-perl, libdbi-perl, imagemagick|graphicsmagick-imagemagick-compat, libxml-simple-perl, diatheke, lsdvd, libfile-mimeinfo-perl, liburi-perl, libnet-rendezvous-publish-backend-avahi-perl, libnet-rendezvous-publish-perl, avahi-daemon, gir1.2-glib-2.0, gir1.2-gnomedesktop-3.0, ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends} Recommends: gir1.2-gtkspell3-3.0 Conflicts: lyricue3 (<= 1:3.0.23), lyricue-cvs (<= 2.4.0) Description: The GNU Lyric Display System This application is used to edit/display song lyrics on a second screen/projector for use at singing events such as church services. Features * User access controls * Networkable (ie run interface and server on different machines) * Multiple Playlists * Copyright info for songs * Automatic Page advance * Re-orderable playlist * Playlist entries to change background * All songs kept in a database and so screens are dynamically generated, allowing you to easily change the backdrop, font etc without having to change all the songs * Can automatically create screens for bible verses * Quick searching for songs lyricue-4.0.12/debian/rules0000775000000000000000000000073513053456656012466 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: test -x configure || ./autogen.sh dh $@ lyricue-4.0.12/debian/README.source0000664000000000000000000000030113053456656013552 0ustar lyricue for Debian ------------------ lyricue-4.0.12/debian/copyright0000664000000000000000000000077713053456656013347 0ustar This work was packaged for Debian by: Chris Debenham on Thu, 05 Aug 2010 17:44:02 +1000 It was downloaded from Upstream Author(s): Chris Debenham Copyright: Copyright (C) 2000-2010 Chris Debenham License: GPL (see /usr/share/common-licenses/GPL-3) The Debian packaging is: Copyright (C) 2010 Chris Debenham and is licensed under the GPL version 3, see `/usr/share/common-licenses/GPL-3'. lyricue-4.0.12/debian/changelog0000664000000000000000000014351513053456657013265 0ustar lyricue (1:4.0.12-0~577~ubuntu17.04.1) zesty; urgency=low * Auto build. -- ChrisDebenham Thu, 23 Feb 2017 03:57:35 +0000 lyricue (1:4.0.12-1) xenial; urgency=high * More font dialog fixes * Ubuntu 14.04 fixes -- Chris Debenham Thu, 23 Feb 2017 17:30:00 +1000 lyricue (1:4.0.11-1) xenial; urgency=high * Fix for lp#1663401 - Can't change font size, color, or style in Lyricue 4.0.9 -- Chris Debenham Wed, 22 Feb 2017 17:30:00 +1000 lyricue (1:4.0.10-1) xenial; urgency=high * Fix font colour configuration dialogs * Set default songnumber when adding song (needed for newer mysql) * make desktop files valid * make NAME section of the manpage valid * Don't install INSTALL * Use help: instead of ghelp -- Chris Debenham Mon, 14 Nov 2016 17:30:00 +1000 lyricue (1:4.0.9-1) xenial; urgency=high * Fix video playback when using clutter-gst < 3 * Move tabs to be vertical and on the side * Use yelp for help (change from Jeremy Bicha) -- Chris Debenham Mon, 27 July 2016 17:30:00 +1000 lyricue (1:4.0.8-1) xenial; urgency=low * Fix clutter-gst-2.0 build -- Chris Debenham Mon, 20 July 2016 17:30:00 +1000 lyricue (1:4.0.7-1) xenial; urgency=low * Video playback working for URIs -- Chris Debenham Mon, 20 July 2016 17:30:00 +1000 lyricue (1:4.0.6-1) xenial; urgency=high * Get clutter-gst-3.0 support working fully -- Chris Debenham Mon, 20 July 2016 17:30:00 +1000 lyricue (1:4.0.5-1) xenial; urgency=high * Make clean_database actually run when asked * Add support for mysql 5.7 (included in ubuntu 16.04) -- Chris Debenham Sun, 19 July 2016 17:30:00 +1000 lyricue (1:4.0.4-1) xenial; urgency=low * Tab reorder * Better error handling -- Chris Debenham Mon, 18 April 2016 17:30:00 +1000 lyricue (1:4.0.3-1) xenial; urgency=medium * Fix video tracking -- Chris Debenham Thu, 14 April 2016 17:30:00 +1000 lyricue (1:4.0.2-1) trusty; urgency=medium * Multiple fixes -- Chris Debenham Tue, 5 April 2016 17:30:00 +1000 lyricue (1:4.0.1-1) trusty; urgency=high * Multiple fixes -- Chris Debenham Mon, 21 March 2016 17:30:00 +1000 lyricue (1:4.0-1) trusty; urgency=medium * Migrate to GTK3 for interface -- Chris Debenham Tue, 29 February 2016 17:30:00 +1000 lyricue (1:3.7.2-1) trusty; urgency=medium * Add option to show song info only on the first page -- Chris Debenham Tue, 17 February 2015 17:30:00 +1000 lyricue (1:3.7.1-1) trusty; urgency=high * Use clutter-gst-2.0 to fix videos not playing * Don't update database status after closing connection -- Chris Debenham Tue, 4 November 2014 17:30:00 +1000 lyricue (1:3.7.0-1) trusty; urgency=medium * Add -i option to enable overriding local IP in lyricue_display * Fallback to 127.0.0.1 if no suitable external IP found * Fix handling of database reload -- Chris Debenham Mon, 15 September 2014 17:30:00 +1000 lyricue (1:3.6.9-1) quantal; urgency=medium * Add dependancy on avahi-daemon * Clean up old status entries on startup -- Chris Debenham Mon, 16 June 2014 17:30:00 +1000 lyricue (1:3.6.8-1) quantal; urgency=medium * Missed Add_ip.sql data file in 3.6.7 -- Chris Debenham Thu, 29 May 2014 17:30:00 +1000 lyricue (1:3.6.7-1) quantal; urgency=medium * Add IP field to status table so things work when local DNS does not -- Chris Debenham Tue, 27 May 2014 17:30:00 +1000 lyricue (1:3.6.6-1) quantal; urgency=low * Disable mouse cursor hiding (causes problems on some versions of clutter) -- Chris Debenham Tue, 25 February 2014 17:30:00 +1000 lyricue (1:3.6.5-1) quantal; urgency=high * Allow hostnames up to 32 characters (up from 16) -- Chris Debenham Wed, 13 November 2013 17:30:00 +1000 lyricue (1:3.6.4-1) quantal; urgency=medium * Fix lyricDb database creation -- Chris Debenham Sat, 28 September 2013 17:30:00 +1000 lyricue (1:3.6.3-1) quantal; urgency=medium * Add a new "headless" server -- Chris Debenham Mon, 4 September 2013 17:30:00 +1000 lyricue (1:3.6.2-1) quantal; urgency=low * Speed up lyricue_remote command-line -- Chris Debenham Mon, 26 August 2013 17:30:00 +1000 lyricue (1:3.6.1-2) quantal; urgency=medium * Fix dependancies * Fix initial DB creation * Clean up logging -- Chris Debenham Mon, 19 August 2013 17:30:00 +1000 lyricue (1:3.6.0-1) quantal; urgency=medium * Profiles for settings and playlists * Support multiple display outputs * Better handling if config file damaged * Remove SQLite support * Use Avahi/SQL to find display servers -- Chris Debenham Mon, 19 August 2013 17:30:00 +1000 lyricue (1:3.5.7-1) quantal; urgency=low * Better handling if config file damaged -- Chris Debenham Mon, 24 June 2013 17:30:00 +1000 lyricue (1:3.5.6-1) quantal; urgency=low * Merge lp:~alerque/lyricue/picue into lp:lyricue (support clutter-gst 2.0) * Add lyricue.spec for rpm package building -- Chris Debenham Mon, 8 April 2013 17:30:00 +1000 lyricue (1:3.5.5-1) quantal; urgency=low * Improved bible handling for remote -- Chris Debenham Mon, 18 March 2013 17:30:00 +1000 lyricue (1:3.5.4-1) quantal; urgency=low * New feature to enable remote access to bible info -- Chris Debenham Sat, 16 March 2013 17:30:00 +1000 lyricue (1:3.5.3-1) quantal; urgency=low * Speed up communications by not including HEX data in log output -- Chris Debenham Thu, 13 March 2013 17:30:00 +1000 lyricue (1:3.5.2-1) quantal; urgency=low * Handle dodgy network connections better * Automatically create snapshots for image/file items -- Chris Debenham Wed, 13 March 2013 17:30:00 +1000 lyricue (1:3.5.1-1) quantal; urgency=low * Add ability to pass snapshots directly from display -- Chris Debenham Thu, 28 February 2013 19:05:00 +1000 lyricue (1:3.5.0-4) quantal; urgency=high * Forgot to re-run automake -- Chris Debenham Tue, 12 February 2013 19:05:00 +1000 lyricue (1:3.5.0-3) quantal; urgency=high * Rebuild for missing Update_3.5.sql -- Chris Debenham Tue, 12 February 2013 17:32:00 +1000 lyricue (1:3.5.0-2) quantal; urgency=medium * Rebuild for missing entry in POTFILES.in -- Chris Debenham Tue, 12 February 2013 17:31:00 +1000 lyricue (1:3.5.0-1) quantal; urgency=medium * New feature: slide-style view of playlist -- Chris Debenham Tue, 12 February 2013 17:30:00 +1000 lyricue (1:3.4.15-1) quantal; urgency=low * Add option to ignore mouse clicks on display screen * Fix preset copyright field handling -- Chris Debenham Tue, 12 February 2013 17:30:00 +1000 lyricue (1:3.4.14-1) quantal; urgency=low * Handle if font colours were set to blank * Fix icon location for launcher files * Add ability to save local copy of pages -- Chris Debenham Tue, 12 February 2013 17:30:00 +1000 lyricue (1:3.4.13-1) quantal; urgency=low * Add right-click popup for backgrounds to change font colours -- Chris Debenham Wed, 6 February 2013 17:30:00 +1000 lyricue (1:3.4.12-2) quantal; urgency=low * Re-upload for failed build * Improve handling of previews for 16:9 displays * Improve presentation import quality -- Chris Debenham Fri, 18 January 2013 17:30:00 +1000 lyricue (1:3.4.12-1) quantal; urgency=low * Improve handling of previews for 16:9 displays * Improve presentation import quality -- Chris Debenham Fri, 18 January 2013 17:30:00 +1000 lyricue (1:3.4.11-1) quantal; urgency=low * Rebuild for Ubuntu 12.10 release * Fix SQL query for creating mysql user -- Chris Debenham Fri, 19 October 2012 17:30:00 +1000 lyricue (1:3.4.10-1) precise; urgency=low * Fix text remaining on screen after slide+rotate transition * Handle database disconnects better (try to reconnect) * Fix error message if config file incorrect -- Chris Debenham Mon, 9 July 2012 17:30:00 +1000 lyricue (1:3.4.9-1) precise; urgency=low * Fix remote JSON query if no return values found -- Chris Debenham Wed, 2 May 2012 17:30:00 +1000 lyricue (1:3.4.8-1) precise; urgency=low * Re-enable translations (were lost due to intltool not handling .ui) -- Chris Debenham Wed, 18 Apr 2012 17:30:00 +1000 lyricue (1:3.4.7-1) precise; urgency=low * Fix images dialog closure (LP#974045) -- Chris Debenham Tue, 10 Apr 2012 17:30:00 +1000 lyricue (1:3.4.6-1) precise; urgency=high * Fix another crash if bible is not set * Fix missing icon in desktop files (LP#971401) * Workaround Gtk2::Builder not setting widget names (fixes LP#971394 and transition tab) * Drop support for old-style CentreX/CentreY setting (LP#972242) -- Chris Debenham Wed, 4 Apr 2012 17:30:00 +1000 lyricue (1:3.4.5-1) precise; urgency=medium * Add option to expand items on adding to playlist (LP#970411) * Fix going back a page when looping is not set (LP#970591) * Fix image tab not showing DB images (LP#970925) * Quick fix for not being able to select image category when adding to db * Refresh category lists for image/bgs when selecting tab (LP#970927) * Fix crash when transition type=None is set for song (LP#966661) -- Chris Debenham Mon, 2 Apr 2012 17:30:00 +1000 lyricue (1:3.4.4-1) precise; urgency=medium * Remove need for JsonBuilder (libglib-json 0.12.0 not available on lucid) -- Chris Debenham Wed, 28 Mar 2012 17:30:00 +1000 lyricue (1:3.4.3-1) precise; urgency=medium * Add ability to do SQL queries via lyricue_display and return results as JSON-formatted string * Preferences dialog - Handle if no bibles installed (LP#966272) * Handle not having default bible better in display portion (LP#963284) -- Chris Debenham Mon, 19 Mar 2012 17:30:00 +1000 lyricue (1:3.4.2-1) precise; urgency=low * Fix moving items past top/bottom of playlist/sublist/song * Add "Save Song as New" option when editing a song * Fix table headers when printing songlist (LP#883368) -- Chris Debenham Mon, 19 Mar 2012 17:30:00 +1000 lyricue (1:3.4.1-1) precise; urgency=low * Fix font colour preference changing * Fix import songlist menu item (LP#953603) * Fix import of utf8 ccli songs (LP#956770) -- Chris Debenham Sat, 17 Mar 2012 17:30:00 +1000 lyricue (1:3.4.0-1) precise; urgency=low * Pressing Enter on bible navigator adds verse to playlist (LP#946787) -- Chris Debenham Fri, 2 Mar 2012 17:30:00 +1000 lyricue (1:3.4.0-1) precise; urgency=low * Change from glade to gtkbuilder for interface * Make playlist items be expanded by default when added to playlist or opening a new playlist * Add ability to copy a playlist * Allow installing to paths other than /usr -- Chris Debenham Fri, 2 Mar 2012 17:30:00 +1000 lyricue (1:3.3.6-1) maverick; urgency=low * Add xrandr and Xorg.log to bug report collection * Add dropdown of previous verses to navigator -- Chris Debenham Wed, 11 Jan 2012 17:30:00 +1000 lyricue (1:3.3.5-1) maverick; urgency=low * Add 'Random' transition * More work on songlist html output (LP#883368) -- Chris Debenham Mon, 09 Jan 2012 17:30:00 +1000 lyricue (1:3.3.4-1) maverick; urgency=low * Make toolbar buttons have text * Reformat songlist html output (LP#883368) * Change window titles for various file chooser dialogs (LP#887769) * More fixes for handling if no bibleDb installed (LP#882686) -- Chris Debenham Wed, 30 Nov 2011 17:30:00 +1000 lyricue (1:3.3.3-1) maverick; urgency=low * Fix html output of songlist * Allow lyricue to load even if bibleDb goes missing * Add apport bug reporting and menu option (LP#884335) -- Chris Debenham Wed, 3 Nov 2011 17:30:00 +1000 lyricue (1:3.3.2-1) maverick; urgency=low * Static Backgrounds now work for exporting * Remove hotkeys for Add/Delete/Edit song (LP#883406) -- Chris Debenham Mon, 31 Oct 2011 17:30:00 +1000 lyricue (1:3.3.1-1) maverick; urgency=low * Make export playlist work better (backgrounds still not working) -- Chris Debenham Mon, 31 Oct 2011 17:30:00 +1000 lyricue (1:3.3.0-1) maverick; urgency=low * Add ability to export playlist as PDF file -- Chris Debenham Fri, 28 Oct 2011 17:30:00 +1000 lyricue (1:3.2.4-1) maverick; urgency=low * Change "Overscan" To "Margin" in preferences (LP#665500) * Remove binmode setting when importing xmlz songlist (LP#877093) -- Chris Debenham Fri, 28 Oct 2011 17:30:00 +1000 lyricue (1:3.2.3-1) maverick; urgency=low * Pause video before destroying -- Chris Debenham Wed, 26 Oct 2011 17:30:00 +1000 lyricue (1:3.2.2-1) maverick; urgency=low * Swap gtk and gst initialisation order (fixes two-windows coming up on some installs -- Chris Debenham Mon, 24 Oct 2011 17:30:00 +1000 lyricue (1:3.2.1-1) maverick; urgency=low * Fix compilation on oneiric (needs clutter-gtk 1.0 in package deps) -- Chris Debenham Fri, 21 Oct 2011 17:30:00 +1000 lyricue (1:3.2.0-1) maverick; urgency=low * Add multi-select for deleting songs * Fix compilation with clutter-gtk 1.0 (LP#876253) * Fix tooltip for start display button -- Chris Debenham Fri, 21 Oct 2011 17:30:00 +1000 lyricue (1:3.1.2-1) maverick; urgency=low * Fix thumbnail search to use right filename (LP#826664) -- Chris Debenham Tue, 16 Aug 2011 17:30:00 +1000 lyricue (1:3.1.1-1) maverick; urgency=low * Add toolbar button to start display * Add special text-entry area for OSD * Make clear/blank toolbar buttons toggle -- Chris Debenham Mon, 15 Aug 2011 17:30:00 +1000 lyricue (1:3.1.0-1) maverick; urgency=low * Fix handling of apostrophe in presentation filenames * Add text overlay in background manager so it is easier to check text colour -- Chris Debenham Mon, 1 Aug 2011 17:30:00 +1000 lyricue (1:3.0.42-1) maverick; urgency=low * Fix import of images to DB (LP#816937) -- Chris Debenham Sat, 30 Jul 2011 17:30:00 +1000 lyricue (1:3.0.41-1) maverick; urgency=low * Dramatic speed increase in advanced search (LP#814772) * Fix handling of semicolons and ampersands in image filenames -- Chris Debenham Sun, 24 Jul 2011 17:30:00 +1000 lyricue (1:3.0.40-1) maverick; urgency=low * Text/shadow colours should work properly now -- Chris Debenham Fri, 22 Jul 2011 17:30:00 +1000 lyricue (1:3.0.39-1) maverick; urgency=low * Fix bible changing in preview -- Chris Debenham Wed, 20 Jul 2011 17:30:00 +1000 lyricue (1:3.0.38-1) maverick; urgency=low * More work on getting text/shadow colour association working with videos -- Chris Debenham Mon, 18 Jul 2011 17:30:00 +1000 lyricue (1:3.0.37-1) maverick; urgency=low * Fix application menu strings (LP#807237) * Make DVD playing actually play the selected title -- Chris Debenham Mon, 11 Jul 2011 17:30:00 +1000 lyricue (1:3.0.36-1) maverick; urgency=low * Add local documentation -- Chris Debenham Sun, 10 Jul 2011 17:30:00 +1000 lyricue (1:3.0.35-1) maverick; urgency=medium * Fix build for maverick/lucid -- Chris Debenham Thu, 7 Jul 2011 17:30:00 +1000 lyricue (1:3.0.34-1) maverick; urgency=high * Fix audio volume (LP#806715) -- Chris Debenham Thu, 7 Jul 2011 17:30:00 +1000 lyricue (1:3.0.33-1) maverick; urgency=low * Make pressing enter in available songlist add song to playlist (makes interactive search work) * Enable videos to play for 3 seconds in miniview * Make shadow offset actually do something -- Chris Debenham Wed, 6 Jul 2011 17:30:00 +1000 lyricue (1:3.0.32-1) maverick; urgency=low * Handle symlinks properly when importing a directory * Allow pressing enter when searching for a song to add first match -- Chris Debenham Mon, 4 Jul 2011 17:30:00 +1000 lyricue (1:3.0.31-1) maverick; urgency=medium * Allow any image, video or music file to be added via 'add directory' * Sort list of song when importing * Fix for importing text songs with unicode -- Chris Debenham Sat, 2 Jul 2011 17:30:00 +1000 lyricue (1:3.0.30-1) maverick; urgency=medium * Fix looping of background videos * Fix progress bar for videos -- Chris Debenham Mon, 27 Jun 2011 17:30:00 +1000 lyricue (1:3.0.29-1) maverick; urgency=medium * Fix scaling on natty * Add support for importing pptx (via workaround) * Initial support for audio files in playlist -- Chris Debenham Mon, 27 Jun 2011 17:30:00 +1000 lyricue (1:3.0.28-1) maverick; urgency=medium * Fix text colour not being updated on re-config -- Chris Debenham Mon, 18 Apr 2011 17:30:00 +1000 lyricue (1:3.0.27-1) maverick; urgency=medium * Fix text colour not being updated * Fix automatic looping for sublists -- Chris Debenham Mon, 28 Mar 2011 17:30:00 +1000 lyricue (1:3.0.26-3) maverick; urgency=low * Rebuild for natty * Fixes for Clutter-gst 1.x -- Chris Debenham Sun, 27 Mar 2011 17:30:00 +1000 lyricue (1:3.0.26-1) maverick; urgency=medium * Fix crash when background not specified fully -- Chris Debenham Wed, 5 Jan 2011 17:30:00 +1000 lyricue (1:3.0.25-1) maverick; urgency=medium * Fix video playback related crash (LP#675090) -- Chris Debenham Sun, 12 Dec 2010 17:30:00 +1000 lyricue (1:3.0.24-1) maverick; urgency=medium * Migrate package name from lyricue3 to lyricue -- Chris Debenham Mon, 6 Dec 2010 17:31:00 +1000 lyricue (1:3.0.23-1) maverick; urgency=medium * Hide mouse cursor in display after three seconds of no motion * Fix video looping for playlist items * Fix geometry override handling when launching via lyricue -- Chris Debenham Mon, 6 Dec 2010 17:30:00 +1000 lyricue (1:3.0.22-1) maverick; urgency=medium * Default hostname should be 'localhost' * Force CLUTTER_DISABLE_MIPMAPPED_TEXT and unset LIBGL_ALWAYS_INDIRECT -- Chris Debenham Fri, 26 Nov 2010 17:30:00 +1000 lyricue (1:3.0.21-1) maverick; urgency=medium * lyricue_display was ignoring database given on commandline -- Chris Debenham Sun, 14 Nov 2010 17:30:00 +1000 lyricue (1:3.0.20-1) maverick; urgency=low * Lyricue should quote passwords in mysql command (LP#668770) * Playback control not working (LP#668443) * Fix handling of & in text display * Lyricue 3 miniview does not work (LP#640936) * Cannot use page forward or back when showing an image (LP#665498) -- Chris Debenham Sun, 7 Nov 2010 17:30:00 +1000 lyricue (1:3.0.19-1) maverick; urgency=low * Work on blank screen behaviour (LP#662311) -- Chris Debenham Fri, 29 Oct 2010 17:30:00 +1000 lyricue (1:3.0.18-1) maverick; urgency=high * Make 'OK' be default action in combo/entry dialogs (LP#665494) * Add fade/blur effect for backgrounds * Work on getting aspect ratio displayed right for backgrounds -- Chris Debenham Thu, 28 Oct 2010 17:30:00 +1000 lyricue (1:3.0.17-1) maverick; urgency=high * Fix Crash when playing videos -- Chris Debenham Sun, 24 Oct 2010 17:30:00 +1000 lyricue (1:3.0.16-1) maverick; urgency=medium * Fix missing break in mouse-click handling (LP#664931) * Fix lyricue_display distorts images (LP#664921) -- Chris Debenham Sat, 23 Oct 2010 17:30:00 +1000 lyricue (1:3.0.15-1) maverick; urgency=medium * Fix lyricue_display ignores font colour setting on songs (LP#664929) * Add mouse-click handling (LP#664931) * Fix line-wrap for preview (LP#662893) -- Chris Debenham Fri, 22 Oct 2010 17:30:00 +1000 lyricue (1:3.0.14-1) maverick; urgency=medium * Fix preview window display -- Chris Debenham Fri, 15 Oct 2010 22:30:00 +1000 lyricue (1:3.0.13-1) maverick; urgency=medium * Remove multiple Load/Close Lyricue Display items in menu -- Chris Debenham Fri, 15 Oct 2010 17:30:00 +1000 lyricue (1:3.0.12-1) maverick; urgency=medium * Remove ServerType setting as it is no longer used * Fix preview in add/edit song dialog -- Chris Debenham Mon, 11 Oct 2010 17:30:00 +1000 lyricue (1:3.0.11.1-1) maverick; urgency=low * Increase epoch so will superceed 1:2.3.x -- Chris Debenham Sun, 10 Oct 2010 17:30:00 +1000 lyricue (3.0.10-1) maverick; urgency=low * Release for public * Don't complain if access.conf not setup -- Chris Debenham Sat, 5 Oct 2010 17:30:00 +1000 lyricue (3.0.9.6-1) maverick; urgency=low * Re-add locales * Don't complain if access.conf not setup -- Chris Debenham Sat, 5 Oct 2010 17:30:00 +1000 lyricue (3.0.9.6-1) maverick; urgency=low * Re-add locales * Don't complain if access.conf not setup -- Chris Debenham Sat, 5 Oct 2010 17:30:00 +1000 lyricue (3.0.9.5-1) maverick; urgency=low * Add default items to applications menu to start/stop lyricue_display * Add option to lyricue_remote to close the server -- Chris Debenham Tue, 5 Oct 2010 17:31:00 +1000 lyricue (3.0.9.4-1) maverick; urgency=low * Set process name for lyricue_display better * Turn off debug output by default (use '-d' to re-enable) -- Chris Debenham Tue, 5 Oct 2010 17:30:00 +1000 lyricue (3.0.9.3-1) maverick; urgency=low * Fix looping not working * Fix clear-text function * Fix double-changing of background in preview -- Chris Debenham Mon, 27 Sep 2010 17:30:00 +1000 lyricue (3.0.9.2-1) maverick; urgency=low * Enable word-wrap by default for songs * Add lsdvd to dependancies * Report port number is process name * Fix crash when going back past first item * Enable live video backgrounds -- Chris Debenham Thu, 23 Sep 2010 17:30:00 +1000 lyricue (3.0.9.1-1) maverick; urgency=low * Add .desktop files -- Chris Debenham Fri, 15 Sep 2010 17:30:00 +1000 lyricue (3.0.9-1) maverick; urgency=low * Initial work at dvd support * Add preview window to edit/add song dialog -- Chris Debenham Thu, 15 Sep 2010 17:30:00 +1000 lyricue (3.0.8.6-1) maverick; urgency=low * Force writing of config to db every startup (LP#636731) * Re-add lyricue_remote command * Let lyricue_display use GeometryOverride if set -- Chris Debenham Wed, 15 Sep 2010 17:30:00 +1000 lyricue (3.0.8.5-1) maverick; urgency=low * Get lyricue_display to reload config when saving prefs in lyricue * Implement OSD functionality -- Chris Debenham Wed, 15 Sep 2010 17:30:00 +1000 lyricue (3.0.8.4-1) maverick; urgency=medium * Fix loading lyricue_display from apps menu * Save first config to database -- Chris Debenham Sun, 12 Sep 2010 17:31:00 +1000 lyricue (3.0.8.3-1) maverick; urgency=low * Change some install dependancies * Make interface work at 1024x600 -- Chris Debenham Wed, 5 Sep 2010 17:31:00 +1000 lyricue (3.0.8.3-1) maverick; urgency=low * Fix status message to return proper screen size * Fix blank handling after preview -- Chris Debenham Wed, 5 Sep 2010 17:31:00 +1000 lyricue (3.0.8.2-1) maverick; urgency=low * Fix missing files -- Chris Debenham Tue, 5 Sep 2010 17:31:00 +1000 lyricue (3.0.8-1) maverick; urgency=low * Make presentation import retry if fails * Store presentation temp files in /var/tmp instead of /tmp * Packaging changes * Implement dbimage loading * Don't try to set the geometry if it is null * Make lyricue_display log to logfile/stderr -- Chris Debenham Tue, 5 Sep 2010 17:30:00 +1000 lyricue (3.0.7-1) maverick; urgency=low * Fixes for bible preview * Fix crash when blanking screen to database image * SEMI should be : -- Chris Debenham Sun, 5 Sep 2010 17:30:00 +1000 lyricue (3.0.6-1) maverick; urgency=low * More fixes to preview command * Change debug messages for verse adding * Use mipmaps for glyph caches -- Chris Debenham Fri, 3 Sep 2010 17:30:00 +1000 lyricue (3.0.5-1) lucid; urgency=low * Fix preview command -- Chris Debenham Thu, 10 Aug 2010 17:30:00 +1000 lyricue (3.0.4-1) lucid; urgency=low * Fix crash on reconfigure -- Chris Debenham Wed, 10 Aug 2010 17:30:00 +1000 lyricue (3.0.3-1) lucid; urgency=low * Add conflict for lyricue/lyricue-cvs * Look for sql updates in right directory -- Chris Debenham Tue, 10 Aug 2010 17:30:00 +1000 lyricue (3.0.2-1) lucid; urgency=low * Add sword support -- Chris Debenham Tue, 10 Aug 2010 17:30:00 +1000 lyricue (3.0.1-2) karmic; urgency=low * Initial release -- Chris Debenham Fri, 06 Aug 2010 17:44:02 +1000 lyricue (1:2.3.1) karmic; urgency=medium * Bugfix release * Fix ampersand handling in playlist (LP#602093) * Fix toolbutton toggle which was stopping current item highlight (LP#602095) -- Chris Debenham Tue, 06 Jul 2010 17:30:00 +1000 lyricue (1:2.3.0) karmic; urgency=medium * Minor release * Major features * Thumbnailing/previews for images and videos * Much work and new preferences stuff to help ensure server displays on correct screen * Video controls for when playing media * * Minor features * Blank/Clear text now are toggles * Updates to key bindings in server * Separate sword and DB bibles in bible menu (LP#593010) * Make advanced search look at artist and keywords as well * 'Add File' dialog - now with multiselect, previews and dbl-click * Migrate FileSelection dialogs to more featureful FileChooser dialogs * Update first-run wizard to allow setting separate DB/projector host (LP#540062 ) * Make preview/quickview stuff work based on cursor selection rather than pure events (means keyboard control works better in playlist) * Make lyricue_server go to next song once it reaches end of song * Bugfixes * Lots of work on handling non-latin characters throughout lyricue * Fix slide transitions so text no longer overlaps * Fix adding/importing songs * Many more - too many to note here -- Chris Debenham Thu, 01 Jul 2010 17:30:00 +1000 lyricue (1:2.2.1) karmic; urgency=medium * Bugfix release: * Fix double-click adding of available songs to playlist * Fix exporting xml files with space in name * Fix UTF8 handling in available song preview * Remove extra .xmlz when exporting songs -- Chris Debenham Thu, 01 Apr 2010 17:30:00 +1000 lyricue (1:2.2.0) karmic; urgency=medium * IMPORTANT: Remove GnomeCanvas Support * Show preview when clicking on a song in the left pane * Update manpages * Bug fixes: * Fix LP#551551 - XML import/export fails when path contains blanks * Multiple fixes for clutter < 1.0 * Make clean_database run on load * Fix server poke so it works if KJV not installed * Restrict bible navigator to verses which actually exist -- Chris Debenham Wed, 31 March 2010 17:30:00 +1000 lyricue (1:2.1.0) karmic; urgency=medium * Allow pages to be renamed and that name to show in the playlist * Fix bible import * Add OSD scroller * Multiple UTF8 fixes * Updated spanish translation * Allow font colour associations with on-disk backgrounds * Cache image/background thumbnails in database * Works with Clutter 1.0 * Allow multiple bible translations in the bibleDb database * Multiple performance improvements * Drag-n-drop re-ordering of pages * Too many bug fixes to note -- Chris Debenham Sun, 05 March 2010 17:30:00 +1000 lyricue (1:2.0.0) unstable; urgency=medium * Export and Import single songs from xmlz format * Export and Import multiple songs at once from xmlz format * Full German translation * Better support for UTF-8 characterset * Better handling of multi-monitor setups * First-run/Configuration Wizard * Allow for multi-select in songlist * Major UI cleanup including: * Moving many dialogs to tabs in the main interface * Re-worked transitions tab * Playlist selector now in replaces playlist view when none is loaded -- Chris Debenham Mon, 03 August 2009 17:30:00 +1000 lyricue (1:1.9.10) unstable; urgency=medium * Make it so that the default bible is set (if not already set) when selecting a translation from the menu * Fix debug output (remove extra newline) * Much improved handling of multi-monitors (server should start on second display automatically) * Handle mal-formed verse lookups a bit better * New First-run/Configuration wizard * Fix error dialog * Fix colour associating for db backgrounds * Preview window scaling correction * Fix drag-n-drop backgrounds to not set when dragging * Fix preview window when text at bottom * Log debug data to a file by default * More locale fixes * Fix preview for when text not centred vertically and/or horizonatally * Fix some preferences saving * Give more details in error dialog * Work on import songlist * Make bible selection area handle resizes better * Allow drag'n'drop background association -- Chris Debenham Wed, 01 July 2009 17:30:00 +1000 lyricue (1:1.9.9) unstable; urgency=low * Make preview/miniview retain aspect ratio * Move bible navigator/dialog to a tab * More work on re-arranging UI for usability/space * Make current/previous background area be collapsable * Fix canvas server loading * UI update - make available songs be a page in a notebook, move backgrounds to notebook tab and add images as a tab * Update glade file for glade-3 * Put header/footer in right position when in miniserv mode * Remove 'blip' from when a video loops * Get miniview/preview to actually stay correct size even if area changes * Only limit server size if in miniserv mode * Sublists were not being named correctly with importing a directory * Handle spaces in presentation filenames * Depreciate canvas/simple server * Add import of ppt, odp and pdf presentations via "Add File" * Fix playlist display of image names * Fix choose playlist dialog to not show sublists * Fix DB import/export * Make it so videos loop if they are being used as a background, but not if displaying as playlist item * Fix preferences dialog so changing items actually takes effect * Background not always changed (== ne eq) * Fix some locale handling * Updated french translation from Claude Paroz * Fix background directory handling * Fix text-wrap in preview window * Add bible installer * Fix directory selection for image/background directory * Fix ampersand handling in server * Fix BG/Image directory chooser * Work on SQLite backend * Live video view * Make clutter (openGL-based) server default * Change libclutter-perl from recommendation to dependancy * Change defaults to new,sane values * Fix preferences saving - data loss previously possible * Add shadow to clutter server * Change transition time to 1 sec (from .5 sec) * Fix bg preview handling * Add play/pause capability for videos * Make directory holding images/backgrounds configurable * Enable video backgrounds * Fixed background handling in clutter server * Added outline to text * Add option to apply a transition to entire playlist * Make 'Fade' the default transition * Fix transistion handling * Songbeamer import * Fix background handling -- Chris Debenham Tue, 9 June 2009 17:30:00 +1000 lyricue-cvs (1:1.9.8cvs20090327) unstable; urgency=medium * More work on OpenGL server -- Chris Debenham Fri, 27 March 2009 17:30:00 +1000 lyricue-cvs (1:1.9.8cvs20081125) unstable; urgency=medium * OpenGL transitions -- Chris Debenham Tue, 25 November 2008 17:30:00 +1000 lyricue-cvs (1:1.9.8cvs20081110) unstable; urgency=medium * New opengl-based server -- Chris Debenham Mon, 10 November 2008 17:30:00 +1000 lyricue-cvs (1:1.9.8cvs20081003) unstable; urgency=low * Sync for release of 1.9.8 -- Chris Debenham Fri, 3 October 2008 17:30:00 +1000 lyricue-cvs (1:1.9.7cvs20080903) unstable; urgency=high * Fix playlist query that was missing playlists * Make images in server display at right aspect ratio * Fix for bible verse stuff failing when no bible selected * Fix line on top and left of screen * Update translations -- Chris Debenham Wed, 3 September 2008 17:30:00 +1000 lyricue-cvs (1:1.9.7cvs20071130) unstable; urgency=low * Minor doco change -- Chris Debenham Fri, 30 November 2007 17:30:00 +1000 lyricue-cvs (1:1.9.7cvs20071114) unstable; urgency=medium * Sync for release of 1.9.7 -- Chris Debenham Wed, 12 November 2007 17:30:00 +1000 lyricue-cvs (1:1.9.7cvs20071112) unstable; urgency=medium * Changed default to give full access if no permissions set in access.conf * Change background association handling * Disable X-server screensaver when lyricue_server runs * Allow disabling of Tray Icons -- Chris Debenham Mon, 12 November 2007 17:30:00 +1000 lyricue-cvs (1:1.9.6cvs20070926) unstable; urgency=low * Fix sorting of filenames in 'Add directory' * Update translation templates * Change base database to be mostly empty other than some samples -- Chris Debenham Wed, 26 September 2007 17:30:00 +1000 lyricue-cvs (1:1.9.6cvs20070914) unstable; urgency=low * New option to lyricue_server commands * New 'Add directory' function to import dir of images -- Chris Debenham Fri, 14 September 2007 14:24:00 +1000 lyricue-cvs (1:1.9.6cvs20070722) unstable; urgency=low * Fix SQLite handling in server -- Chris Debenham Wed, 22 August 2007 14:24:00 +1000 lyricue-cvs (1:1.9.6cvs20070707) unstable; urgency=low * Release synced for 1.9.6 -- Chris Debenham Tue, 7 August 2007 12:02:00 +1000 lyricue-cvs (1:1.9.6cvs20070525) unstable; urgency=medium * More mediaDb creation fixes -- Chris Debenham Fri, 25 May 2007 16:30:00 +1000 lyricue-cvs (1:1.9.6cvs20070514) unstable; urgency=medium * Fix mediaDb creation -- Chris Debenham Mon, 14 May 2007 12:55:00 +1000 lyricue-cvs (1:1.9.6cvs20070502) unstable; urgency=medium * Add drag-n-drop for images to playlist/backgrounds -- Chris Debenham Wed, 2 May 2007 17:30:00 +1000 lyricue-cvs (1:1.9.5cvs20070421) unstable; urgency=medium * Fix missing comma * Release 1.9.5.1 -- Chris Debenham Sat, 21 Apr 2007 19:32:00 +1000 lyricue-cvs (1:1.9.5cvs20070420) unstable; urgency=medium * Release 1.9.5 -- Chris Debenham Fri, 20 Apr 2007 11:00:00 +1000 lyricue-cvs (1:1.9.5cvs20070416) unstable; urgency=medium * Allow text to be at top, centre or bottom of screen * Fix song metadata for time entered/edited * Handle "NULL" as well as NULL for text colours -- Chris Debenham Mon, 16 Apr 2007 13:00:00 +1000 lyricue-cvs (1:1.9.4cvs20070206) unstable; urgency=medium * Fix text/shadow colour handling * Fix Sword bible listing -- Chris Debenham Tue, 06 Feb 2007 14:00:00 +1000 lyricue-cvs (1:1.9.4cvs20070111) unstable; urgency=medium * Fix autoshow button in bible navigator -- Chris Debenham Thu, 11 Jan 2007 10:52:00 +1000 lyricue-cvs (1:1.9.4cvs20061220) unstable; urgency=medium * Fix quickshow to not reset header/footer * Fix mplayer handling -- Chris Debenham Wed, 20 Dec 2006 15:32:00 +1000 lyricue-cvs (1:1.9.3cvs20061025) unstable; urgency=medium * Add/Change comand-line options to allow seperation of server/interface/db * Update translations * Fix opw import charset * Fix un-needed dash in footer -- Chris Debenham Mon, 16 Oct 2006 14:19:00 +1000 lyricue-cvs (1:1.9.3cvs20060929) unstable; urgency=high * Fix mysql user creation so it takes effect right away * Add song import filters for OPW and SongSelect files -- Chris Debenham Fri, 29 Sep 2006 12:54:00 +1000 lyricue-cvs (1:1.9.3cvs20060914) unstable; urgency=high * Fix for expanding items in playlist * Work on font colour association with backgrounds -- Chris Debenham Thu, 14 Sep 2006 16:35:00 +1000 lyricue-cvs (1:1.9.3cvs20060817) unstable; urgency=high * Remove debstd from build requirements to allow lintian pass -- Chris Debenham Thu, 17 Aug 2006 11:29:00 +1000 lyricue-cvs (1:1.9.3cvs20060815) unstable; urgency=high * Fix for extraneous bracket -- Chris Debenham Tue, 15 Aug 2006 8:29:00 +1000 lyricue-cvs (1:1.9.3cvs20060814) unstable; urgency=medium * Fix for text/shadow colour not handling NULL values * Fix for image dialog failure after changing default background * Update available strings for translations -- Chris Debenham Mon, 14 Aug 2006 11:26:00 +1000 lyricue-cvs (1:1.9.3cvs20060811) unstable; urgency=medium * Initial import of Text/shadow colour work from Bernt Hullen * Added spanish translation from Jonas Delgado Mesa * Fixes to dialog titles * Fix to Loop setting handling (no longer ignored) -- Chris Debenham Fri, 11 Aug 2006 11:26:00 +1000 lyricue-cvs (1:1.9.2cvs20060626) unstable; urgency=medium * Same as 1.9.3 release -- Chris Debenham Mon, 26 Jun 2006 09:26:00 +1000 lyricue-cvs (1:1.9.2cvs20060620) unstable; urgency=medium * Selected items in sublists/songs stay selected when moving * Fix sizing of quickshow/navigatorarea -- Chris Debenham Tue, 20 Jun 2006 09:26:00 +1000 lyricue-cvs (1:1.9.2cvs20060613) unstable; urgency=medium * Add buttons to search dialog -- Chris Debenham Tue, 13 Jun 2006 17:26:00 +1000 lyricue-cvs (1:1.9.2cvs20060609) unstable; urgency=medium * Fix for preview restart * Fix for bible translation search -- Chris Debenham Fri, 09 Jun 2006 17:26:00 +1000 lyricue-cvs (1:1.9.2cvs20060605) unstable; urgency=medium * Swedish translation from Torbjörn Björk -- Chris Debenham Mon, 05 Jun 2006 15:07:00 +1000 lyricue-cvs (1:1.9.2cvs20060529) unstable; urgency=medium * More minor bug-fixing * Allow double-clicking in choose playlist dialog -- Chris Debenham Mon, 29 Apr 2006 15:07:00 +1000 lyricue-cvs (1:1.9.2cvs20060523) unstable; urgency=high * Initial support for SQLite * GUI work on search function -- Chris Debenham Tue, 23 Apr 2006 15:07:00 +1000 lyricue-cvs (1:1.9.2cvs20060519) unstable; urgency=high * Preparing for 1.9.3 * Many fixes/updates for issues discovered by Chris Young -- Chris Debenham Thu, 19 Apr 2006 15:15:00 +1000 lyricue-cvs (1:1.9.2cvs20060518) unstable; urgency=high * Minor patches to install and tracker handling -- Chris Debenham Thu, 18 Apr 2006 10:15:00 +1000 lyricue-cvs (1:1.9.2cvs20060516) unstable; urgency=high * Fixes related to preview change -- Chris Debenham Tue, 16 Apr 2006 10:15:00 +1000 lyricue-cvs (1:1.9.2cvs20060508) unstable; urgency=high * Revert to old style preview/miniview since new one wasn't working -- Chris Debenham Mon, 8 Apr 2006 17:57:00 +1000 lyricue-cvs (1:1.9.2cvs20060411) unstable; urgency=high * Highlighting of current item in playlist -- Chris Debenham Tue, 11 Apr 2006 12:00:00 +1000 lyricue-cvs (1:1.9.2cvs20060406) unstable; urgency=high * Move db installation to first run of lyricue -- Chris Debenham Thu, 6 Apr 2006 15:07:00 +1000 lyricue-cvs (1:1.9.2cvs20060326) unstable; urgency=high * Dutch translation -- Chris Debenham Sun, 26 Mar 2006 15:07:00 +1000 lyricue-cvs (1:1.9.2cvs20060303) unstable; urgency=high * Fix for searching on unicode chars * Hack for verses larger than a single screen (at least it won't hang now) * Re-factor advanced search dialog -- Chris Debenham Fri, 03 Feb 2006 15:07:00 +1000 lyricue-cvs (1:1.9.2cvs20060209) unstable; urgency=high * Additional server commands for clients to get playlists -- Chris Debenham Thu, 09 Feb 2006 16:37:00 +1000 lyricue-cvs (1:1.9.2cvs20060203) unstable; urgency=high * Optional miniature interface -- Chris Debenham Fri, 03 Feb 2006 13:01:00 +1000 lyricue-cvs (1:1.9.2cvs20060125) unstable; urgency=high * Fixes for bible menu handling * Fixes for sword bible handling in server -- Chris Debenham Wed, 25 Jan 2006 16:14:00 +1000 lyricue-cvs (1:1.9.2cvs20060124) unstable; urgency=high * Fixes for bible navigator -- Chris Debenham Tue, 24 Jan 2006 16:03:00 +1000 lyricue-cvs (1:1.9.2cvs20051130) unstable; urgency=medium * Click verse numbers in navigator to show them -- Chris Debenham Tue, 22 Nov 2005 17:11:00 +1000 lyricue-cvs (1:1.9.2cvs20051122) unstable; urgency=medium * Fix multiple-select in media interface * Add one-more-verse button to bible navigator -- Chris Debenham Tue, 22 Nov 2005 17:11:00 +1000 lyricue-cvs (1:1.9.2cvs20051110) unstable; urgency=medium * Packaging update -- Chris Debenham Thu, 10 Nov 2005 17:16:00 +1000 lyricue-cvs (1:1.9.2cvs20051106) unstable; urgency=medium * French translation by Claude Paroz -- Chris Debenham Sun, 06 Nov 2005 16:28:00 +1000 lyricue-cvs (1:1.9.2cvs20051104) unstable; urgency=medium * Option for blank screen to clear page + set bg to default or just clear text * Quick-search now also searches first-lines -- Chris Debenham Fri, 04 Nov 2005 16:28:00 +1000 lyricue-cvs (1:1.9.2cvs20051018) unstable; urgency=medium * Many more bugfixes -- Chris Debenham Tue, 18 Oct 2005 15:28:00 +1000 lyricue-cvs (1:1.9.2cvs20050920) unstable; urgency=high * Fix tray icons * Fix button bar next page button -- Chris Debenham Tue, 20 Sep 2005 14:40:00 +1000 lyricue-cvs (1:1.9.2cvs20050914) unstable; urgency=medium * Split package into app/bible packages -- Chris Debenham Wed, 14 Sep 2005 14:53:00 +1000 lyricue-cvs (1:1.9.2cvs20050905) unstable; urgency=medium * Work on preview (new app, lyricue_preview) -- Chris Debenham Mon, 05 Sep 2005 17:07:12 +1000 lyricue-cvs (1:1.9.2cvs20050829) unstable; urgency=medium * Experimental transparent server -- Chris Debenham Mon, 29 Aug 2005 15:47:22 +1000 lyricue-cvs (1:1.9.2cvs20050726) unstable; urgency=medium * Various bible navigator fixes * Make first item in available songs, images and backgrounds configurable -- Chris Debenham Tue, 26 July 2005 16:24:00 +1000 lyricue-cvs (1:1.9.2cvs20050719) unstable; urgency=medium * Allow multiple images to be imported at once * Fix choose category window so its above the add image window * Make preview update when idle -- Chris Debenham Tue, 19 July 2005 10:23:00 +1000 lyricue-cvs (1:1.9.2cvs20050712) unstable; urgency=low * Bugfix release for bindir error -- Chris Debenham Tue, 12 July 2005 13:10:00 +1000 lyricue-cvs (1:1.9.2cvs20050704) unstable; urgency=low * New preview method -- Chris Debenham Mon, 04 July 2005 12:31:00 +1000 lyricue-cvs (1:1.9.2cvs20050504) unstable; urgency=high * Data-critical bug fix to quick save -- Chris Debenham Wed, 04 May 2005 11:44:00 +1000 lyricue-cvs (1:1.9.2cvs20050503) unstable; urgency=low * Bible-navigator fixes -- Chris Debenham Tue, 03 May 2005 11:44:00 +1000 lyricue-cvs (1:1.9.2cvs20050429) unstable; urgency=low * Bible-navigator changes -- Chris Debenham Wed, 29 Apr 2005 11:44:00 +1000 lyricue-cvs (1:1.9.2cvs20050427) unstable; urgency=medium * Fixes for Bible-changing crashes -- Chris Debenham Wed, 27 Apr 2005 14:14:00 +1000 lyricue-cvs (1:1.9.2cvs20050330) unstable; urgency=medium * UTF-8 work -- Chris Debenham Wed, 30 Mar 2005 13:56:00 +1000 lyricue (1:1.9.2cvs20050322) unstable; urgency=medium * Fix for sword handling -- Chris Debenham Thu, 17 Mar 2005 13:56:00 +1000 lyricue (1:1.9.2) unstable; urgency=medium * New release -- Chris Debenham Thu, 17 Mar 2005 13:56:00 +1000 lyricue (1.9.2cvs20050316) unstable; urgency=low * new cvs version * Sword support -- Chris Debenham Wed, 16 Mar 2005 15:14:00 +1000 lyricue (1.9.2cvs20050311) unstable; urgency=low * new cvs version -- Chris Debenham Fri, 11 Mar 2005 15:14:00 +1000 lyricue (1.9.2cvs20050222) unstable; urgency=low * new cvs version * .desktop files for distros to make menus from -- Chris Debenham Tue, 22 Feb 2005 12:25:00 +1000 lyricue (1.9.2cvs20050217) unstable; urgency=low * new cvs version * new utility lyricue_remote * fast lyricue_server * bug fixes -- Chris Debenham Thu, 17 Feb 2005 16:55:13 +1000 lyricue (1.9.2cvs20050204) unstable; urgency=low * new cvs version * Fixes for Media handling -- Chris Debenham Fri, 04 Feb 2005 15:47:20 +1000 lyricue (1.9.2cvs20050203) unstable; urgency=low * new cvs version * Added option to change vertical centreing * Fixed drag'n'drop * Double click songs to add them to playlist -- Chris Debenham Thu, 03 Feb 2005 15:13:30 +1000 lyricue (1.9.2cvs20041130) unstable; urgency=low * new cvs version * Fixed import media script * misc bug fixes in interface -- Chris Debenham Tue, 30 Nov 2004 10:16:00 +1000 lyricue (1.9.2cvs20041122) unstable; urgency=low * new cvs version -- Chris Debenham Mon, 11 Nov 2004 10:16:00 +1000 lyricue (1.9.2cvs20041019) unstable; urgency=low * new cvs version -- Chris Debenham Fri, 19 Oct 2004 10:16:00 +1000 lyricue (1.9.2cvs20041001) unstable; urgency=low * new release -- Chris Debenham Fri, 1 Oct 2004 10:16:00 +1000 lyricue (1.9.2cvs20040928) unstable; urgency=low * new cvs version -- Tobias Gehrig Tue, 28 Sep 2004 00:18:29 +0200 lyricue (1.9.2cvs20040915-5) unstable; urgency=low * debian directory revised -- Tobias Gehrig Wed, 22 Sep 2004 11:51:55 +0200 lyricue (1.9.2cvs20040915-4) unstable; urgency=low * some more additional translation -- Tobias Gehrig Fri, 17 Sep 2004 21:50:13 +0200 lyricue (1.9.2cvs20040915-3) unstable; urgency=low * fixed some translation issues and added further translation -- Tobias Gehrig Fri, 17 Sep 2004 17:01:33 +0200 lyricue (1.9.2cvs20040915-2) unstable; urgency=low * german translation -- Tobias Gehrig Wed, 15 Sep 2004 04:56:08 +0200 lyricue (1.9.2cvs20040915-1) unstable; urgency=low * fixed umlaut problems in add/edit song -- Tobias Gehrig Wed, 15 Sep 2004 03:29:01 +0200 lyricue (1.9.2cvs20040915) unstable; urgency=low * new cvs build -- Tobias Gehrig Wed, 15 Sep 2004 00:21:17 +0200 lyricue (1.9.1cvs20040818) unstable; urgency=low * new cvs build -- Tobias Gehrig Wed, 18 Aug 2004 05:34:01 +0200 lyricue (1.9.1cvs-1) unstable; urgency=low * fixed background preference dialog -- Tobias Gehrig Sun, 11 Jul 2004 20:01:07 +0200 lyricue (1.9.1cvs) unstable; urgency=low * new cvs build. -- Tobias Gehrig Wed, 30 Jun 2004 16:10:02 +0200 lyricue (1.9) unstable; urgency=low * Initial release. -- Tobias Gehrig Sun, 27 Jun 2004 23:39:48 +0200 lyricue-4.0.12/debian/compat0000664000000000000000000000000213053456656012577 0ustar 7 lyricue-4.0.12/debian/docs0000664000000000000000000000002113053456656012245 0ustar NEWS README TODO lyricue-4.0.12/data/0000775000000000000000000000000013053456657011071 5ustar lyricue-4.0.12/data/dialogFileChooser.ui0000664000000000000000000000622213053456656015013 0ustar False 5 Select File normal True True False vertical 2 True False end gtk-cancel False True True True True False False 0 gtk-ok False True True True True True True False False 1 False True end 0 buttonFileCancel buttonFileOK lyricue-4.0.12/data/Add_Profiles.sql0000664000000000000000000000125113053456656014143 0ustar use lyricDb; CREATE TABLE `status` ( `host` varchar(50) NOT NULL default '', `title` varchar(50) NOT NULL default '', `lastupdate` timestamp NOT NULL, `profile` varchar(50) NOT NULL default '', `type` varchar(50) NOT NULL default 'normal', `ref` varchar(50) NOT NULL default '', PRIMARY KEY (`host`) ) DEFAULT CHARSET=utf8; CREATE TABLE `profiles` ( `host` varchar(50) NOT NULL default '', `profile` varchar(50) NOT NULL default '', PRIMARY KEY (`host`) ) DEFAULT CHARSET=utf8; ALTER TABLE config ADD profile varchar(50) default ''; ALTER TABLE config_old ADD profile varchar(50) default ''; ALTER TABLE playlists ADD profile varchar(50) default 'Default'; lyricue-4.0.12/data/windowTray.ui0000664000000000000000000001061013053456656013574 0ustar False popup You should never read this True False icons False False True False True Previous Song True gtk-media-previous False True False True False True Next Song True gtk-media-next False True False True False True Previous Page True gtk-go-back False True False True False True Next Page True gtk-go-forward False True False True False True Clear Screen True gtk-clear False True lyricue-4.0.12/data/dialogImportData.ui0000664000000000000000000001451513053456656014661 0ustar False 5 Import Data from File center normal True False vertical 2 True False end gtk-cancel False True True True True False False 0 gtk-ok False True True True True False False 1 False True end 0 True False vertical True False Use this dialog to import a songlist True True 0 Sample songlists False True True True True none http://www.lyricue.org/songs True True 1 True False True False Select file to import True True 0 True False True True 1 False True 3 True True 2 buttonImportCancel buttonImportOK lyricue-4.0.12/data/Expand_data.sql0000664000000000000000000000007513053456656014023 0ustar use lyricDb; ALTER TABLE playlist MODIFY data VARCHAR(256); lyricue-4.0.12/data/Add_mediadb_colour.sql0000664000000000000000000000021213053456656015324 0ustar use mediaDb; ALTER TABLE media ADD textcolour VARCHAR(10) DEFAULT 'NULL'; ALTER TABLE media ADD shadowcolour VARCHAR(10) DEFAULT 'NULL'; lyricue-4.0.12/data/dialogAdmin.ui0000664000000000000000000001673213053456656013650 0ustar True False Lyricue Administration True True lyricue-icon.png dialog True False vertical True False end gtk-cancel False True True True False True False False 0 gtk-ok False True True True False True False False 1 False True end 0 True False 20 True False 0 Username 0 1 True False 0 Playlist 1 1 True False 0 Edit 2 1 True False 0 Delete 3 1 True False 0 Display 4 1 True False 0 Admin 5 1 Add user False True True False True 0 0 6 False True 0 cancelbutton2 okbutton3 lyricue-4.0.12/data/Lyricue-first-run-header.svg0000664000000000000000000010072313053456656016405 0ustar image/svg+xml First-run wizard lyricue-4.0.12/data/lyricue-crashdb.conf0000664000000000000000000000015613053456656015021 0ustar lyricue = { 'impl' : 'launchpad', 'project' : 'lyricue', 'bug_pattern_base' : None, } lyricue-4.0.12/data/windowBibleManager.ui0000664000000000000000000001464413053456656015200 0ustar True False Bible Installer True False vertical True False Select the file containing the bible you wish to import. New bibles can be downloaded from the sites below. Click the relevant button to load that site in your browser. Once downloaded come back here to install. True False False 0 Sword bibles http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles False True True False True False True 1 LyricueDB bibles http://www.lyricue.org/bibles False True True False True False True 2 True False True False Select file to install False False 0 True False True True 1 True True 3 True False spread gtk-apply False True True True False True False False 0 gtk-cancel False True True True False True False False 1 False False 4 lyricue-4.0.12/data/assistantFirstRun.ui0000664000000000000000000004344213053456656015144 0ustar 640 1920 1024 10 100 480 1200 768 10 100 False True center dialog False 1 True False As this is the first time you have run Lyricue we now walk through some initial settings True intro True True False vertical True False Lyricue can run the interface on a separate machine to where you run your database. You can set the hostname where the database is run here. (leave as default or localhost if you do not know) True True 0 True True False False True True 1 Location True False True False <i>Username/Password failed</i> True 0 4 2 True False Password: right 0 3 True False Username: right 0 2 True True False True False False 1 3 True False 0 1 2 True True root False False 1 2 True False Lyricue uses MySQL to store its data. To access MySQL I will create a special user 'lyric' To do this I need your mysql root users password. <i>Note: This password is not stored anywhere</i> True True 0 0 2 Database Login True False True False Lyricue requires somewhere to load it's images and backdrops from. The Image and Backgrounds directory can be the same or you can keep them seperate. Please select a suitable directory for each. True 0 0 2 True False 0 1 2 True False 0 Image Directory 0 2 True False 0 Backgrounds Directory 0 3 False True True True True False 0 0 True False 2 True False gtk-directory False False 0 True False Folder True False False 1 1 2 False True True True True False 0 0 True False 2 True False gtk-directory False False 0 True False Folder True False False 1 1 3 Image Directories True False Lyricue is now configured. Next you will be taken to the preferences dialog so you can set things up the way you want (or just accept the defaults and move on) center True confirm Done False 16:9 4:3 None selected Left Centre Right Left Centre Right Top Centre Bottom lyricue-4.0.12/data/windowAbout.ui0000664000000000000000000000674413053456656013744 0ustar False About Lyricue True center lyricue-icon.png True False vertical True False lyricue.png True True 0 True False Version #VERSION# False False 1 True False Written By: Chris Debenham & Clint Turner Website: http://www.lyricue.org/ center False False 2 True False False True 3 Thanks False True True True True False True False False 4 lyricue-4.0.12/data/dialogPrefs.ui0000664000000000000000000022110313053456656013665 0ustar 10 1 10 640 1920 640 10 100 480 1200 480 10 100 100 2 1 10 100 2 1 10 True False Preferences center lyricue-icon.png normal True False vertical True False spread gtk-cancel True True True False True False False 0 gtk-ok True True True False True False False 1 False True end 0 True False vertical True False True False Settings for Profile: False True 0 True False True True 1 True True 0 True False False True 1 True True left True True False vertical True False Fonts used for projector False False 0 True False False True 1 True False 7 2 True False Font Colour 0 4 5 GTK_FILL True False Footer 0 2 3 GTK_FILL True False Main 0 1 2 GTK_FILL True False Header 0 GTK_FILL True True False False False 1 2 4 5 True True False False False 1 2 2 3 True True False False False 1 2 1 2 True True False False False 1 2 True False Shadow Colour 0 5 6 GTK_FILL True False Shadow Offset 0 6 7 GTK_FILL True True False False 1 2 5 6 True True False False adjustment5 1 True True 1 2 6 7 True False OSD 0 3 4 GTK_FILL True True False False 1 2 3 4 GTK_FILL True True 2 True False Fonts False True False True False Settings for projector 0 0 2 True False 0 1 2 True False Aspect Ratio 0 0 2 True False 16:9 4:3 1 2 True False Text Justification 0 0 3 True False Vertical Text Location 0 0 4 True False Horizontal Text Location 0 0 5 True False Song information location 0 0 6 True False 1 Top only Name at top, Details at bottom Bottom only 1 6 True False Song infomation pages 0 0 7 True False All pages First page 1 7 True False Vertical Margin 0 0 8 True True 2 False False adjustment8 1 True 2 1 8 True False Horizontal Margin 0 0 9 True True 2 False False adjustment9 1 2 1 9 False True False Top True True 0 True False Centre True True 1 True False Bottom True True 2 0 10 True False 0 Left Centre Right 1 3 True False Top Centre Bottom 1 4 True False Left Centre Right 1 5 1 True False Projector layout 1 False True False True False Default Background 0 0 2 True True True True False gtk-missing-image 0 1 2 True False Default Transition 0 0.46000000834465027 0 2 True False Ignore Mouse Clicks 0 0 3 True True False 0 True 1 3 True False Window offset 0 0 4 True True False False 1 4 True False None Fade 1 2 2 True False Projector options 2 False True False vertical True False Various defaults False False 0 True False False True 1 Loop pages True True False True 0.5 True False False 2 Expand items when added to playlist True True False 0.5 True False True 3 Audit Songs True True False True 0.5 True False False 4 Dynamic Preview True True False True 0.5 True False False 5 Miniview True True False True 0.5 True False False 6 Dual Head True True False True 0.5 True False False 7 3 True False Advanced 3 False True False True False Image Directory 0 0 0 True True True True False 0 0 True False 2 True False gtk-directory False False 0 True False Folder True False False 1 1 0 True False Backgrounds Directory 0 0 1 True False Bible 0 0 2 True True True True False 0 0 True False 2 True False gtk-directory False False 0 True False Folder True False False 1 1 1 True False 1 2 True False Special items that will be first in lists 0 3 2 True False Available songs 0 0 4 True False Images 0 0 5 True False Backgrounds 0 0 6 True True Today's Announcements False False 1 4 True True Main False False 1 5 True True Main False False 1 6 4 True False Defaults 4 False True False vertical True False Recovery Options False False 0 True False False True 1 Backup Database True True True True False False 2 Restore Database True True True True False False 3 5 True False Backup/Restore 5 False True True 2 True True 1 cancelbutton3 okbutton4 Top Centre Bottom Left Centre Right Left Centre Right None Fade lyricue-4.0.12/data/Add_transition.sql0000664000000000000000000000010713053456656014551 0ustar use lyricDb; ALTER TABLE playlist ADD transition int(11) default '0'; lyricue-4.0.12/data/dialogDirChooser.ui0000664000000000000000000000647413053456656014663 0ustar True False 5 Select Directory True True gtk-directory dialog select-folder True True False vertical 2 True False end gtk-cancel False True True True False True False False 0 gtk-open False True True True True False True False False 1 False True end 0 button1 button2 lyricue-4.0.12/data/dialogSearch.ui0000664000000000000000000004216713053456656014026 0ustar 640 1920 1024 10 100 255 255 1 10 10 480 1200 768 10 100 100 5 1 10 1000 10 100 10 1 10 640 1920 640 10 100 480 1200 480 10 100 100 2 1 10 100 2 1 10 True False Advanced Search center lyricue-icon.png True False vertical True False True False Search Lyrics False False 0 True True True False False False True 1 False True True True True False True False 0 0 True False 2 True False gtk-find False False 0 True False Search True False False 1 False False 2 False True 0 True True True True True True True True True True False True False Song Contents False False 0 True True True True False word False True True 1 True True True True 1 True False False True True True False True False 0 0 True False 2 True False gtk-add False False 0 True False Add to playlist True False False 1 False False 0 False True True True False True False 0 0 True False 2 True False gtk-cancel False False 0 True False Cancel True False False 1 False False 1 False False 2 lyricue-4.0.12/data/lyricue.png0000664000000000000000000001743213053456656013261 0ustar PNG  IHDR9sBIT|dtEXtTitleMade with Sodipodi/'tEXtAuthorUnknown! zTXtDescriptionxKT(L.)-J_~ ,iIDATxwEF $ zP:"M:A@A$|T@>"H*{'RK@BBz뽹-gww=;gfΜ.յ\ H]k =nPJZ$k9 ׄ(G%=ZN3b(G%t-a C~Zf&T]m#ԄQI\o!0@M*ek:3=[-d36%q X\BQIa)(Lr]HA \0RC+%娤\0RAĔCa( m5mneŦysBp:6+e)HQ+go$2,$#LA2F2bSX.2a1#LA2D`oq&u0E9̘)H SYs*0ZG` ˮ\VIA򜋵$#LA,`˴1Q|F ,ټ]׽X݀+p7L0Im&VFx(c xQ٥ztwփEE`7u;3Z@'?EY$2fb)WE(+փ4Pأ\rA|PZ M 0ε5d)HBDT/p-G a i-{,v-@YAz}\R'^~:փ$<`&VfD`3`r4L0)zk9B$#LA/>lkʊ)H1v-G] PVLAVRd Xe:krPUE\=q"p\C{z#/ L/[?ʹśV`ѼUKgAN"eq 'nqQKY7~p9<DgA})*pzhNYӀ"VTNz L->4]` n35[Ԍ̝ԃ+3QUL`8荺Y CJSvh8Jԣ6sa^EC`;'꒾eRIsz^j)lf䫔ǭ>@w}\O >ͻΠ AF{J+AAFHagS2LZkTY?K ['$Ed(#]`)颶30R Y`Y{=IoyX:X ӵFf,gaS4ue( "jNmNF#S&fS%LF0ie] aBۦ^ADͪ0rzZ#7zYX[+na32aqA(zn+$l;m#$4^Ru*Ӏ(:۳)p,Z@͵iKV=.u03_HHL+/iy>kjbIvJ| у<ڃ.`/`rne 5 )!X{Ӂ*glʮșp@fR, Ο64fוiA!k9rb!`#OLR%6±ȉWoz)D/0Ю4ȂAD<ص9GԤjbF'y6 *GYO`?Ȱ2;YX;Xe6fzpkeMϡ,(BAD븖##^tܑs*'+rUv1:{:Kr)H" CqI+A83.s#=Q:*7 fXB?x\ˑ"2n\+(5`EBdS]A28ll?7Cpv,_aD`8c `oǮhAj(Cqrvh] P .fbnFP6j&h c4|u!ZPJ ,w[jW945X#!ϺNAq-G|ϦK\ G]Z8I[zkACHp'v$uaۮƈN(n8mu{9G`Iҳg#-ґ۩\Q#nOJp+hFCq0{U8z ('M,ӏ&kP)Lj~'%6[MKHNAүE#ݤ8 n3HWv/,rTP`^(( @y(OVxQ[/rmk ٮ~.2]`{u/=f@Y5H>,@ۦH[_y*p똸PNq.EE` s>j P`iu*4@!jxm.-poH:lQStB`tK@_ "f>5(FE9lj(O@9utEI#eEWL]*B5Ao`v4ԥy$ `# W|ձr,A{G+EXzX߁ DWi])|=T{+U)FmZ\NO2ssvuP(U4B!Gx~!U>}o`<+ac7ۑrTS@bOrVcTuԳJV#r|,0QUo"[󪐑y(k9zÛϜddhp<)n|6ͧZFr*jBvF\jprz ,]ɿmwBNV|aqAK[:(ԸP2|`g t]Ț[Z\.)78ڃSηY![YO 0ż> \)_\(HZ'>wr0)Hp1ICA(r%Å24˃=݅WD>ei 0ſ+?w6ݐCx$b)2.t"Y#DE"kyv(ȎyT> P{.xWYX4`kn L`KRbfes4#Nd2ڊ1T'H[GAT&-YFqYn1 ؍hB6fu0L9B>`bktYX \ ,܆=|&HXzāa]4V crbit+Gwϋaaaaaaaaaaaaaaaaa4kr"z(/d R(CI+М. MOw)WJy+/SfS0HD(Yqho[] URsAr(*BE/P"ݟFB>mSѵm<ϥPts-!_vAw܋9b R7XFc001PLA #S0B01l7Q^/ګt6C]JPF?`U?Wy-ȋo)&q=xOoz%[s0`5? Aל&=OQd`&-FGz~ZZYYҷjP]ޕj&Uh+HSETa#K\Zpzm> > {nysuem '~զC"n}ytQθƔ7|-0z?$Ӂ woU4"-V?"ߣ?k}?6!Xm+䚩覨>hw:k&]z |S h_B6xtVPnNE4j OԱ/=/z MՔp4p6p=D`&ߠA)!9ACb "ؾ4!KPR ,SwOWﲃ&IgoũE iĽW4(i"ۈ^[7@WΑk83@A{kB0hVAgI l$(0RA|N=Iv %9mbΏm=6AC_iQZE.98ý}ш(̈~Bî!}.zvK% ,]u0.F9gצ(dRY:>у1y&7I=|XU{5;Y;(#[G[`蛼R]:vdEKY^T|7H3#KE|J;(%o>[,J#k^s"Gwh?A*\O96X}'j()K eM(WuhpO%*F|_*v996 |\gCmОάrL Zv`Zej1LʝuvT.&FN2D@y <]Ku^L). Eq KQך^w#x:AkDޟ5N Tԭ9{6lE}E?JTiLx+$|[(CMu"% a=M R|!wUwj>/n-kQW=Q^آ_#wJki/>?Wi{,%\&)!)\Ois&rKJX="zΠCK޼}7^%eц4i֛im.Gֈkpot #o r< C!yHOF4}& 2.fdj[;YA !)pZV L} D{Feu?T |#⾅(֪q&PkVA xKn%ܚ(O-Hp垛 fewx#f3^xGZzJ>Y7ż &vROƝJ磎|37^_#xB}PO|FH}u,C5$Q}=@h^As+S:|=qo_":z˜d93=5Myhp?Nc/F̕,S+&omf^3>7Nx"FOGX]AqiTf?7Q/F\74 [*k+~[L9PdK*w\Ekuȸ< SEn3%~d×fUXAt~W4|P:g+-KY&Q8pS ^F{5Ͷbu&jQ[{[4h4JrOsl{5QZ>,:ܶjwG {E5^n7E0qkf QO-pw-CFK|R-$=K4&b3Rri=t\@0: A&G iS=q,aTb`-Ӯړ]ΐD ]䜃jTx#M3 ϗa.$<]Pu[Fe*Ӿ Nz}3]\_ty0&jh eљTA=_Y)VfQ w? 茬OucL@T5|VqaX%2}jgr&nMGq~gU8 浣g4zA#(Jx}-P=m c^U/iL;m=r&q\ߏ{a:{KsוscSδ>}@_,4"̳igw^ӲԲ!ywE{ֲؠuR}d[lYVI/|j'gUpɼv|dQ~937hGITA+@uJ-o̅ PvG*ަC[T}k.(:u}ro .6DA.^ Bt,9οvB9}$;&C9B!(Q𿢱oA$GάN_wξJQ|_@uz{_gQ_i1`8 YQnn c7V#`T{JN;zvLJ=*N?ٶ_ wQWQy]TjbB}w7Y.Dr[4 l=mMmVY45Kjk#ϢctĥèO\9:=OXލb(IotޛD(sѓYeo7"Zsѽ ͩ+_;E_PKE*LzQAvC}>G 0?q{hNAgOgE{ Ak#*RWn;Be+lח>Z].7Y#ѷts}3PeKԂ} ^+PG}tF$Qi,jiTƓoI2NQZ݈>"-n@}#*& 'fL_: u<¿fD?]h3 Fߊ۠5t 35iV6B ^݈b&D/e:F85]ߠ JK_TGTuoڻ^.Ue|7@5,gw4Gu5c$ !٩aN=GN\Gs%d8:I++@C޷;jJyh²Jh{&hf`˓PބsNF5P`?2)F Y*IENDB`lyricue-4.0.12/data/windowMain.ui0000664000000000000000000050726113053456656013556 0ustar 255 255 1 10 10 True False gtk-go-back True False gtk-go-forward True False gtk-media-play True False gtk-media-stop True False gtk-clear True False gtk-media-record False Lyricue lyricue-icon.png True False vertical True False True False File False True False Manage Images True False Manage Background True False Clean Database True False Import Songlist True False Export Songlist True False Profiles gtk-quit True False True True True False Edit False True False Add Song True False Advanced Search True False Edit Song True False Delete Song True False Refresh List gtk-preferences True False True True True False Manage Profiles True False Configuration Wizard True False User Administration True False Playlist False True False Select Playlist True False Clear Playlist True False Refresh Playlist True False Clear Image Associations True False Invert Line Display True False Export Playlist as PDF True False Playlist Item False True False Add from Available True False Add Image True False Add File True False Add Directory True False Add DVD Video True False Remove from Playlist True False Display False Previous Page True False image1 False True Next Page True False image2 False True Display Now True False image3 False True Blank Display True False image4 False True Clear Text True False image5 False True Live Video True False image6 False True True False Applications True False Bible True False Help False gtk-help True False True True True False Gather troubleshooting info gtk-about True False True True False False 0 True False True False True Prev. Page True Prev. Page True gtk-go-back False True True False True Next Page True Next Page True gtk-go-forward False True True False True Next Point True Next Point True gtk-go-down False True True False True Blank Screen True Blank Screen True gtk-media-stop False True True False True Clear Text True Clear Text True gtk-clear False True True False True Reshow True gtk-media-play False True True False True Add File True Add File True gtk-file False True True False True Start Display True Start Display True gtk-fullscreen False True False False 1 True True 214 200 True False 0 in True True left True True False vertical True False Search True True True True Advanced Search True False False 0 True True Search the songlist directly False False True True 1 gtk-clear True True True True Clear Search Field True False False False 2 False True 0 True True in True True True True True 1 True False both-horiz True False True New True gtk-add False True True False True Edit True gtk-edit False True True False True Add the selected song to the playlist True Add to playlist True gtk-convert False True False False 2 Songs True False Songs 90 False True False vertical True False False True 0 True True in True True 3 3 3 0 True True 1 True True True True False True False vertical True False Current False False 1 True True 0 True False vertical True False Previous False False 1 True True 1 True False Background preview False True 2 Backgrounds 1 True False Backgrounds 90 1 False True False vertical True False False True 0 True True in True True 3 3 3 0 True True 1 True False both-horiz True False True Add to Playlist True gtk-add True True False True 2 Images 2 True False Images 90 2 False True False vertical True False Enter Verse to display False False 0 True False < True True True True False False 0 True False True True True True 1 > True True True True False False 2 False False 1 True True vertical True True in True True False char fill False False True True True True in True True word True True True True 2 True False both-horiz True False True Add these verses to the playlist True Add to Playlist True gtk-convert False True True False True Show Now True Show True gtk-apply False True True False True Autoshow True gtk-fullscreen False True False True 4 Bible 3 True False Bible 90 3 False False vertical True False False False True False True True 0 True False both-horiz True False True Remove the current item from the playlist True Add to playlist True gtk-add True True False True 1 Files 4 False Files 90 4 False True False vertical True False vertical True Default True True False True 0 True True False False 0 None True True False True 0 True radioTransDefault False False 1 Fade True True False True 0 True radioTransDefault False False 2 Slide Text True True False True 0 True radioTransDefault False False 3 Rotate Text True True False True 0 True radioTransDefault False False 4 Random True True False True 0 True radioTransDefault False False 5 False True 0 True False False True 1 True False True False True True True False In Direction 0 0 3 True True True 0 1 True True True True False gtk-go-up 1 1 True True True 2 1 True True True False True False gtk-go-back 0 2 True True True True False gtk-media-stop 1 2 True True True True False gtk-go-forward 2 2 True True True 0 3 True True True True False gtk-go-down 1 3 True True True 2 3 True True 0 True False vertical False True 1 True False True True True False Out Direction 0 0 3 True True True 0 1 True True True False True False gtk-go-back 0 2 True True True 0 3 True True True True False gtk-go-up 1 1 True True True True False gtk-media-stop 1 2 True True True True False gtk-go-down 1 3 True True True 2 1 True True True 2 3 True True True True False gtk-go-forward 2 2 True True 2 True True 2 True False True True True False Rotate Direction 0 0 3 X-Axis True True True 0 1 Y-Axis True True True 1 1 Z-Axis True True True 2 1 False True 3 True False False True 4 True False vertical Apply to Selected True True True True True False False 0 Apply to Playlist True True True True True False False 1 False True 5 Transitions 5 True False Transitions 90 5 False True False 400 True True 200 200 True False 0 in True False vertical True False True True True none top True False gtk-refresh False True 0 True False vertical True False Playlist False True 0 True False No Playlist loaded False True 1 True True 1 Previews True True False 0 True False True 2 False True 0 True in True True False True False True True 1 True False vertical True False False True 0 True False Choose Your Playlist False True 1 True True True True False True True 2 True False both True False Load True gtk-open False True True False New True gtk-new False True True False Delete True gtk-delete False True True False Rename True gtk-save-as False True True False Copy True gtk-copy False True True False Cancel True gtk-cancel False True False True 3 True True 2 False both-horiz True False True Move the current item down Move Down True gtk-go-down False True True False True Move the current item up Move Up True gtk-go-up False True True False True Remove the current item from the playlist True Remove True gtk-remove False True True False True Add Sublist True gtk-indent False True False False 3 True True True True 6 True True 4 True False 200 True False 0 in True False vertical True True vertical True False vertical Preview True True False False 0 True False True 0 True False 0.5 0 in 1.3300000429153442 False True True 1 Current True True False 0 True False True 2 True False vertical True True 3 True False True False 0:00/0:00 False True 0 True True 0 False left True True 1 True True True none False True False gtk-media-pause False True 2 True True none False True False gtk-media-play False True 3 False True 4 True False True False Fade False False 0 True True adjustmentFade 255 False left True True 1 Blur True True False 0 True False False 2 False True 5 True True True False vertical True False Quick Update False True 0 True True True True True True 1 True False both-horiz True False True Save True gtk-save False True True False True Save Copy True gtk-save False True True False True Show True gtk-apply False True True False True OSD True gtk-dialog-info False True False True 2 True True gtk-info False False False True 3 True True True True 0 True False True True True True 2 True False False False 3 True False True False Duplicate Item True True False Remove from Playlist True lyricue-4.0.12/data/Add_config.sql0000664000000000000000000000074013053456656013627 0ustar use lyricDb; -- Table structure for table `config` CREATE TABLE config ( id int(11) NOT NULL auto_increment, config_key varchar(50) NOT NULL default '', config_value varchar(250) default '', PRIMARY KEY (id) ) DEFAULT CHARSET=utf8; -- Table structure for table `config_old` CREATE TABLE config_old ( id int(11) NOT NULL auto_increment, config_key varchar(50) NOT NULL default '', config_value varchar(250) default '', PRIMARY KEY (id) ) DEFAULT CHARSET=utf8; lyricue-4.0.12/data/dialogSelectCategory.ui0000664000000000000000000000707513053456656015535 0ustar False 5 Select Category normal True False vertical 2 True False vertical end gtk-cancel False True True True True False False 0 gtk-ok False True True True True False False 1 False True end 0 True False True False False True 1 buttonCatCancel buttonCatOK lyricue-4.0.12/data/default.conf0000664000000000000000000000165513053456656013372 0ustar Aspect = 16:9 Audit = 1 BGDirectory = ~/Pictures BGImage = db;1 CentreX = 0 CentreY = 1 Colour = #ffffff DatabaseType = mysql DBHost = localhost DefaultTransition = None DefBible = DynamicPreview = 1 ExpandNew = 0 Footer = Sans 20 FrameLeft = 486 FrameRight = 200 GeometryOverride = +2287+449 Header = Sans 20 Height = 768 HighlightColour = yellow HorizontalLocation = centre IgnoreMouse = 1 ImageDirectory = ~/Pictures Justification = Left Loop = 1 Main = Sans 40 Miniview = 0 OSD = Sans 30 OverscanH = 0 OverscanV = 0 Preset1 = Used with permission CCLI 23232 Preset2 = Used without permission ProjectorHost = localhost ShadowColour = #000000 ShadowSize = 1 ShowInfoLocation = split ShowInfoPages = all SpecialBack = Solid SpecialImage = Solid SpecialSong = Today's Announcements TrayIcons = 1 VerticalLocation = centre Width = 1024 Xinerama = 1 App = Close Lyricue Display;lyricue_remote close App = Load Lyricue Display;lyricue_display lyricue-4.0.12/data/Makefile.in0000664000000000000000000005152413053456657013145 0ustar # Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = data ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(apportdir)" "$(DESTDIR)$(crashdbdir)" \ "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(etcdir)" \ "$(DESTDIR)$(sharedir)" "$(DESTDIR)$(sqldir)" DATA = $(apport_DATA) $(crashdb_DATA) $(desktop_DATA) $(etc_DATA) \ $(share_DATA) $(sql_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AVAHIGLIB_CFLAGS = @AVAHIGLIB_CFLAGS@ AVAHIGLIB_LIBS = @AVAHIGLIB_LIBS@ AVAHI_CFLAGS = @AVAHI_CFLAGS@ AVAHI_LIBS = @AVAHI_LIBS@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLUTTERGST_CFLAGS = @CLUTTERGST_CFLAGS@ CLUTTERGST_LIBS = @CLUTTERGST_LIBS@ CLUTTERGTK_CFLAGS = @CLUTTERGTK_CFLAGS@ CLUTTERGTK_LIBS = @CLUTTERGTK_LIBS@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@ CLUTTER_LIBS = @CLUTTER_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ HELP_DIR = @HELP_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ ITSTOOL = @ITSTOOL@ JSONGLIB_CFLAGS = @JSONGLIB_CFLAGS@ JSONGLIB_LIBS = @JSONGLIB_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XMLLINT = @XMLLINT@ YELP_LC_DIST = @YELP_LC_DIST@ YELP_LC_MEDIA_LINKS = @YELP_LC_MEDIA_LINKS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ sql_DATA = \ Create_lyricDb.sql\ Create_mediaDb.sql \ Update_1.2.sql \ Add_config.sql \ Add_ip.sql \ Add_mediadb_colour.sql \ Add_pagetitle.sql \ Add_Profiles.sql \ Add_snapshot.sql \ Add_transition.sql \ Expand_data.sql share_DATA = \ lyricue.png \ Lyricue-first-run-header.svg \ Lyricue-first-run-sidebar.png \ lyricue-icon.png \ *.ui etc_DATA = \ default.conf \ access.conf desktop_DATA = \ lyricue.desktop \ lyricue_display.desktop sharedir = \ $(pkgdatadir) sqldir = \ $(sharedir)/mysql etcdir = \ $(sysconfdir)/lyricue desktopdir = \ $(datadir)/applications apportdir = $(datadir)/apport/package-hooks apport_DATA = source_lyricue.py crashdbdir = $(sysconfdir)/apport/crashdb.conf.d crashdb_DATA = lyricue-crashdb.conf EXTRA_DIST = \ $(share_DATA) \ $(sql_DATA) \ $(etc_DATA) \ $(apport_DATA) \ $(crashdb_DATA) \ $(desktop_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu data/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-apportDATA: $(apport_DATA) @$(NORMAL_INSTALL) @list='$(apport_DATA)'; test -n "$(apportdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(apportdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(apportdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(apportdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(apportdir)" || exit $$?; \ done uninstall-apportDATA: @$(NORMAL_UNINSTALL) @list='$(apport_DATA)'; test -n "$(apportdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(apportdir)'; $(am__uninstall_files_from_dir) install-crashdbDATA: $(crashdb_DATA) @$(NORMAL_INSTALL) @list='$(crashdb_DATA)'; test -n "$(crashdbdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(crashdbdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(crashdbdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(crashdbdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(crashdbdir)" || exit $$?; \ done uninstall-crashdbDATA: @$(NORMAL_UNINSTALL) @list='$(crashdb_DATA)'; test -n "$(crashdbdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(crashdbdir)'; $(am__uninstall_files_from_dir) install-desktopDATA: $(desktop_DATA) @$(NORMAL_INSTALL) @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(desktopdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(desktopdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(desktopdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \ done uninstall-desktopDATA: @$(NORMAL_UNINSTALL) @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir) install-etcDATA: $(etc_DATA) @$(NORMAL_INSTALL) @list='$(etc_DATA)'; test -n "$(etcdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(etcdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(etcdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(etcdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(etcdir)" || exit $$?; \ done uninstall-etcDATA: @$(NORMAL_UNINSTALL) @list='$(etc_DATA)'; test -n "$(etcdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(etcdir)'; $(am__uninstall_files_from_dir) install-shareDATA: $(share_DATA) @$(NORMAL_INSTALL) @list='$(share_DATA)'; test -n "$(sharedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(sharedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(sharedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(sharedir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(sharedir)" || exit $$?; \ done uninstall-shareDATA: @$(NORMAL_UNINSTALL) @list='$(share_DATA)'; test -n "$(sharedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(sharedir)'; $(am__uninstall_files_from_dir) install-sqlDATA: $(sql_DATA) @$(NORMAL_INSTALL) @list='$(sql_DATA)'; test -n "$(sqldir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(sqldir)'"; \ $(MKDIR_P) "$(DESTDIR)$(sqldir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(sqldir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(sqldir)" || exit $$?; \ done uninstall-sqlDATA: @$(NORMAL_UNINSTALL) @list='$(sql_DATA)'; test -n "$(sqldir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(sqldir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(apportdir)" "$(DESTDIR)$(crashdbdir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(etcdir)" "$(DESTDIR)$(sharedir)" "$(DESTDIR)$(sqldir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-apportDATA install-crashdbDATA \ install-desktopDATA install-etcDATA install-shareDATA \ install-sqlDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-apportDATA uninstall-crashdbDATA \ uninstall-desktopDATA uninstall-etcDATA uninstall-shareDATA \ uninstall-sqlDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-apportDATA install-crashdbDATA \ install-data install-data-am install-desktopDATA install-dvi \ install-dvi-am install-etcDATA install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-shareDATA install-sqlDATA install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-apportDATA uninstall-crashdbDATA \ uninstall-desktopDATA uninstall-etcDATA uninstall-shareDATA \ uninstall-sqlDATA .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: lyricue-4.0.12/data/Add_snapshot.sql0000664000000000000000000000007413053456656014221 0ustar use lyricDb; ALTER TABLE playlist ADD snapshot MEDIUMBLOB; lyricue-4.0.12/data/dialogFont.ui0000664000000000000000000000224613053456656013521 0ustar False dialog False vertical 2 False end False False 0 lyricue-4.0.12/data/dialogDvd.ui0000664000000000000000000002144713053456656013334 0ustar End time Duration False 5 Select DVD Title center True normal True False vertical 2 True False end gtk-cancel False True True True True False False 0 gtk-add False True True True True False False 1 False True end 0 True False vertical True False True False Select the DVD title number to play False True 0 True True 0 True True True False 2 2 True False Start time GTK_FILL True False model5 0 1 2 GTK_FILL True True False False 1 2 True True False False 1 2 1 2 True False Select time period True True 1 True True 2 buttonCancel buttonAdd lyricue-4.0.12/data/lyricue-icon.png0000664000000000000000000000110513053456656014175 0ustar PNG  IHDR szz IDATx+DQ Qe, FY( 0IٰX( ,e,!G)3u;qvg3swΙ,YV\/+ D"3692w! BN["H=M+9k,ηYٷo 9 (I'FN[lzT P:N9n Sl&PH2/f*SLY5 84S} pg'9gM ^diϺL}ٙJ𭩹5?J%0@%//-w_Wjm젮&e~GQxjTrNBa<ӝ gXX'E8 @hX4BN7_KhFۚ9 dzAτ[d?`J+0[aj 2ߠk.g6G$:"Sy 0?uxWSvTYA1*d%.t 5:IENDB`lyricue-4.0.12/data/source_lyricue.py0000664000000000000000000000631313053456656014501 0ustar # Apport integration for Lyricue # # Copyright 2009 Chris Debenham # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published # by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranties of # MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR # PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program. If not, see . """Stub for Apport""" # pylint: disable-msg=F0401,C0103 # shut up about apport. We know. We aren't going to backport it for pqm import apport from apport.hookutils import attach_file_if_exists, packaging import os.path from xdg.BaseDirectory import xdg_data_home # Paths where things we might want live lyricue_log_path = os.path.join(xdg_data_home, "lyricue") # things we may want to collect for the report lyricue_config = os.path.join(lyricue_log_path, "config2") lyricue_frontend_log = os.path.join(lyricue_log_path, "frontend.log") lyricue_frontend_old_log = os.path.join(lyricue_log_path, "frontend.log.old") lyricue_server_log = os.path.join(lyricue_log_path, "server-2346.log") lyricue_server_old_log = os.path.join(lyricue_log_path, "server-2346.log.old") lyricue_preview_log = os.path.join(lyricue_log_path, "server-2347.log") lyricue_preview_old_log = os.path.join(lyricue_log_path, "server-2347.log.old") def add_info(report): """add report info""" attach_file_if_exists(report, lyricue_config, "LyricueConfig") attach_file_if_exists(report, lyricue_frontend_log, "LyricueFrontendLog") attach_file_if_exists(report, lyricue_server_log, "LyricueServerLog") attach_file_if_exists(report, lyricue_preview_log, "LyricuePreviewLog") attach_file_if_exists(report, lyricue_frontend_old_log, "LyricueFrontendOldLog") attach_file_if_exists(report, lyricue_server_old_log, "LyricueServerOldLog") attach_file_if_exists(report, lyricue_preview_old_log, "LyricuePreviewOldLog") attach_file_if_exists(report, '/var/log/Xorg.0.log', 'XorgLog') if os.environ.get('DISPLAY'): log = command_output(['xrandr', '-q']) if not log or log[:5] == "Error": return report['Xrandr'] = log if not apport.packaging.is_distro_package(report['Package'].split()[0]): report['ThirdParty'] = 'True' report['CrashDB'] = 'lyricue' packages = ['lyricue', 'libclutter-1.0-0', 'libclutter-gst-1.0-0', 'libclutter-gtk-1.0-0', 'libclutter-gtk-0.10-0', 'mysql-server'] versions = '' for package in packages: try: version = packaging.get_version(package) except ValueError: version = 'N/A' if version is None: version = 'N/A' versions += '%s %s\n' % (package, version) report['LyricuePackages'] = versions lyricue-4.0.12/data/dialogDatabase.ui0000664000000000000000000001730213053456656014316 0ustar True False Select Databases to backup dialog True False vertical True False end gtk-cancel False True True True False True False False 0 gtk-ok False True True True False True False False 1 False True end 0 True False Select Databases to backup False False 0 Songs, Playlists, Usage False True True False True 0 True True False False 1 Images, Backgrounds, Media False True True False True 0 True False False 3 True False False True 4 True False File to save as False False 5 True False True True False False True True 0 Browse False True True False True False False 1 True True 6 cancelbutton4 okbutton5 lyricue-4.0.12/data/windowBook.ui0000664000000000000000000013356313053456656013564 0ustar True False Choose a Book center True False Genesis False True True True True 0 1 Exodus False True True True True 1 1 Leviticus False True True True True 2 1 Numbers False True True True True 3 1 Deuteronomy False True True True True 0 2 Joshua False True True True True 1 2 Judges False True True True True 2 2 Ruth False True True True True 3 2 1 Samuel False True True True True 0 3 2 Samuel False True True True True 1 3 1 Kings False True True True True 2 3 2 Kings False True True True True 3 3 1 Chronicles False True True True True 0 4 2 Chronicles False True True True True 1 4 Ezra False True True True True 2 4 Nehemiah False True True True True 3 4 Esther False True True True True 0 5 Job False True True True True 1 5 Psalms False True True True True 2 5 Proverbs False True True True True 3 5 Ecclesiastes False True True True True 0 6 Song of Solomon False True True True True 1 6 Isaiah False True True True True 2 6 Jeremiah False True True True True 3 6 Lamentations False True True True True 0 7 Ezekiel False True True True True 1 7 Daniel False True True True True 2 7 Hosea False True True True True 3 7 Joel False True True True True 0 8 Micah False True True True True 0 9 Haggai False True True True True 0 10 Amos False True True True True 1 8 Obadiah False True True True True 2 8 Jonah False True True True True 3 8 Nahum False True True True True 1 9 Habakkuk False True True True True 2 9 Zephaniah False True True True True 3 9 Zechariah False True True True True 1 10 Malachi False True True True True 2 10 Song of Songs False True True 3 10 True False 0 11 4 True False New Testament 0 12 4 Matthew False True True True True 0 13 Mark False True True True True 1 13 Luke False True True True True 2 13 John False True True True True 3 13 Acts False True True True True 0 14 Galatians False True True True True 0 15 1 Thessalonians False True True True True 0 16 Romans False True True True True 1 14 1 Corinthians False True True True True 2 14 2 Corinthians False True True True True 3 14 Ephesians False True True True True 1 15 Philippians False True True True True 2 15 Colossians False True True True True 3 15 1 Timothy False True True True True 2 16 2 Thessalonians False True True True True 1 16 2 Timothy False True True True True 3 16 Titus False True True True True 0 17 Philemon False True True True True 1 17 Hebrews False True True True True 2 17 James False True True True True 3 17 1 Peter False True True True True 0 18 2 Peter False True True True True 1 18 1 John False True True True True 2 18 2 John False True True True True 3 18 3 John False True True True True 0 19 Jude False True True True True 1 19 Revelation False True True True True 2 19 False True True True True False 0 0 True False 2 True False gtk-cancel False False 0 True False Cancel True False False 1 0 21 4 True False 0 20 4 True False Old Testament 0 0 4 lyricue-4.0.12/data/dialogSelectSongs.ui0000664000000000000000000001642013053456656015043 0ustar False 5 Select songs to import center 400 300 normal True False vertical 2 True False end gtk-cancel False True True True True False False 0 gtk-ok False True True True True False False 1 False True end 0 True False vertical True False Select songs to import False True 0 True True True False queue True True True True 1 True False Select All False True True True False False 0 Unselect All False True True True False False 1 False True 2 True True 1 button4 button5 lyricue-4.0.12/data/dialogColour.ui0000664000000000000000000000242013053456656014050 0ustar False dialog rgb(255,255,255) False False vertical 2 False end False False 0 lyricue-4.0.12/data/Makefile.am0000664000000000000000000000166013053456656013127 0ustar sql_DATA = \ Create_lyricDb.sql\ Create_mediaDb.sql \ Update_1.2.sql \ Add_config.sql \ Add_ip.sql \ Add_mediadb_colour.sql \ Add_pagetitle.sql \ Add_Profiles.sql \ Add_snapshot.sql \ Add_transition.sql \ Expand_data.sql share_DATA = \ lyricue.png \ Lyricue-first-run-header.svg \ Lyricue-first-run-sidebar.png \ lyricue-icon.png \ *.ui etc_DATA = \ default.conf \ access.conf desktop_DATA = \ lyricue.desktop \ lyricue_display.desktop sharedir = \ $(pkgdatadir) sqldir = \ $(sharedir)/mysql etcdir = \ $(sysconfdir)/lyricue desktopdir = \ $(datadir)/applications apportdir = $(datadir)/apport/package-hooks apport_DATA = source_lyricue.py crashdbdir = $(sysconfdir)/apport/crashdb.conf.d crashdb_DATA = lyricue-crashdb.conf EXTRA_DIST = \ $(share_DATA) \ $(sql_DATA) \ $(etc_DATA) \ $(apport_DATA) \ $(crashdb_DATA) \ $(desktop_DATA) ## File created by the gnome-build tools lyricue-4.0.12/data/lyricue_display.desktop0000664000000000000000000000041013053456656015657 0ustar [Desktop Entry] Version=1.0 Type=Application Exec=lyricue_display Icon=/usr/share/lyricue/lyricue-icon.png Terminal=false Name=Lyricue Server Comment=The GNU Lyric Display System Display Categories=AudioVideo; StartupNotify=true X-Desktop-File-Install-Version=0.3 lyricue-4.0.12/data/Add_pagetitle.sql0000664000000000000000000000010513053456656014333 0ustar use lyricDb; ALTER TABLE page ADD pagetitle varchar(100) default ''; lyricue-4.0.12/data/Create_mediaDb.sql0000664000000000000000000000305713053456656014426 0ustar CREATE DATABASE mediaDb; USE mediaDb; -- -- Table structure for table `media` -- CREATE TABLE media ( id INTEGER unsigned NOT NULL auto_increment, category varchar(100) NOT NULL default '', subcategory varchar(100) NOT NULL default '', type varchar(10) NOT NULL default '', format varchar(10) NOT NULL default '', insertedby varchar(100) NOT NULL default '', insertdate datetime NOT NULL default '1000-01-01 00:00:00', description varchar(100) default '', textcolour varchar(10) DEFAULT 'NULL', shadowcolour varchar(10) DEFAULT 'NULL', data mediumblob, PRIMARY KEY (id), UNIQUE KEY data (data(100),description,category,subcategory,type,format) ); -- -- Dumping data for table `media` -- INSERT INTO media VALUES (1,'Solid','','bg','bg','cjd','2004-08-01 17:03:47','black','','',''); INSERT INTO media VALUES (2,'Main','','img','bg','cjd','2004-08-01 17:02:25','black','','',''); INSERT INTO media VALUES (5,'Solid','','bg','bg','cjd','2004-08-01 17:03:47','orange','','',''); INSERT INTO media VALUES (6,'Solid','','bg','bg','cjd','2004-08-01 17:03:47','gray','','',''); INSERT INTO media VALUES (7,'Solid','','bg','bg','cjd','2004-08-01 17:03:47','red','','',''); INSERT INTO media VALUES (8,'Solid','','bg','bg','cjd','2004-08-01 17:03:47','green','','',''); INSERT INTO media VALUES (9,'Solid','','bg','bg','cjd','2004-08-01 17:03:47','blue','','',''); INSERT INTO media VALUES (10,'Solid','','bg','bg','cjd','2004-08-01 17:03:47','yellow','','',''); INSERT INTO media VALUES (11,'Solid','','bg','bg','cjd','2004-08-01 17:03:47','white','','',''); lyricue-4.0.12/data/Create_lyricDb.sql0000664000000000000000000001426513053456656014474 0ustar CREATE DATABASE lyricDb CHARSET=utf8; USE lyricDb; -- Table structure for table `associations` CREATE TABLE `associations` ( `id` int(11) NOT NULL auto_increment, `playlist` int(11) NOT NULL default '0', `imagename` varchar(255) NOT NULL default '', `absoluteparent` int(11) NOT NULL default '0', PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8; -- Table structure for table `audit` CREATE TABLE `audit` ( `id` int(11) NOT NULL auto_increment, `songid` int(11) NOT NULL default '0', `playdate` datetime NOT NULL default '1000-01-01 00:00:00', PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8; -- Table structure for table `lyricMain` CREATE TABLE `lyricMain` ( `id` int(11) NOT NULL auto_increment, `title` varchar(100) NOT NULL default '', `songnum` int(11) default '0', `book` varchar(100) default '', `artist` varchar(100) default '', `written` datetime NOT NULL default '1000-01-01 00:00:00', `keywords` text, `entered` timestamp NOT NULL, `copyright` varchar(100) default '', PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8; -- Table structure for table `page` CREATE TABLE `page` ( `pageid` int(11) NOT NULL auto_increment, `songid` int(11) NOT NULL default '0', `pagenum` int(11) NOT NULL default '0', `pagetitle` varchar(100) default '', `lyrics` text, PRIMARY KEY (`pageid`) ) DEFAULT CHARSET=utf8; -- Table structure for table `playlist` CREATE TABLE `playlist` ( `playorder` int(11) NOT NULL default '0', `playlist` int(11) NOT NULL default '1', `data` varchar(256) default NULL, `type` varchar(4) default 'song', `transition` int(11) default '0', `snapshot` mediumblob, PRIMARY KEY (`playorder`) ) DEFAULT CHARSET=utf8; -- Table structure for table `playlists` CREATE TABLE `playlists` ( `id` int(11) NOT NULL default '1', `title` varchar(50) NOT NULL default '', `ref` varchar(50) NOT NULL default '', `profile` varchar(50) NOT NULL default '', PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8; -- Table structure for table `config` CREATE TABLE `config` ( `id` int(11) NOT NULL auto_increment, `profile` varchar(50) NOT NULL default '', `config_key` varchar(50) NOT NULL default '', `config_value` varchar(250) default '', PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8; -- Table structure for table `config_old` CREATE TABLE `config_old` ( `id` int(11) NOT NULL auto_increment, `profile` varchar(50) NOT NULL default '', `config_key` varchar(50) NOT NULL default '', `config_value` varchar(250) default '', PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8; -- Table structure for table `status` CREATE TABLE `status` ( `host` varchar(50) NOT NULL default '', `title` varchar(50) NOT NULL default '', `lastupdate` timestamp NOT NULL, `profile` varchar(50) NOT NULL default '', `type` varchar(50) NOT NULL default 'normal', `ip` varchar(16) NOT NULL default '', `ref` varchar(50) NOT NULL default '', PRIMARY KEY (`host`) ) DEFAULT CHARSET=utf8; -- Table structure for table `profiles` CREATE TABLE `profiles` ( `host` varchar(50) NOT NULL default '', `profile` varchar(50) NOT NULL default '', PRIMARY KEY (`host`) ) DEFAULT CHARSET=utf8; -- Baseline Data INSERT INTO lyricMain VALUES (1,'Today\'s Announcements',0,'Not Songs','',20040307192037 ,'',NOW(),''); INSERT INTO page VALUES (1,1,1,'', 'Here are todays announcements'); INSERT INTO lyricMain VALUES (2,'Sample Song',0,'Sample Songbook','',20040307192037 ,'',NOW(),''); INSERT INTO page VALUES (2,2,1,'Verse 1', 'This is a sample song'); INSERT INTO page VALUES (3,2,2,'Chorus', 'This is the second page of the a sample song'); INSERT INTO playlists VALUES (1,'Main Playlist','','Default'); INSERT INTO `config` VALUES (1,'','Audit','1'); INSERT INTO `config` VALUES (2,'','BGDirectory',''); INSERT INTO `config` VALUES (3,'','BGImage','db;1'); INSERT INTO `config` VALUES (4,'','CentreX','0'); INSERT INTO `config` VALUES (5,'','CentreY','1'); INSERT INTO `config` VALUES (6,'','Colour','#ffffff'); INSERT INTO `config` VALUES (7,'','DatabaseType','mysql'); INSERT INTO `config` VALUES (8,'','DBHost','localhost'); INSERT INTO `config` VALUES (9,'','DefaultTransition','Fade'); INSERT INTO `config` VALUES (10,'','DefBible',''); INSERT INTO `config` VALUES (11,'','DynamicPreview','1'); INSERT INTO `config` VALUES (12,'','ExpandNew','0'); INSERT INTO `config` VALUES (13,'','Footer','Sans 20'); INSERT INTO `config` VALUES (14,'','FrameLeft','327'); INSERT INTO `config` VALUES (15,'','FrameRight','259'); INSERT INTO `config` VALUES (16,'','GeometryOverride',''); INSERT INTO `config` VALUES (17,'','Header','Sans 20'); INSERT INTO `config` VALUES (18,'','Height','768'); INSERT INTO `config` VALUES (19,'','HighlightColour','yellow'); INSERT INTO `config` VALUES (20,'','HorizontalLocation','Centre'); INSERT INTO `config` VALUES (21,'','IgnoreMouse','0'); INSERT INTO `config` VALUES (22,'','ImageDirectory',''); INSERT INTO `config` VALUES (23,'','Justification','Left'); INSERT INTO `config` VALUES (24,'','Loop','1'); INSERT INTO `config` VALUES (25,'','Main','Sans 40'); INSERT INTO `config` VALUES (26,'','Miniview','0'); INSERT INTO `config` VALUES (27,'','OSD','Sans 30'); INSERT INTO `config` VALUES (28,'','OverscanH','0'); INSERT INTO `config` VALUES (29,'','OverscanV','0'); INSERT INTO `config` VALUES (30,'','Preset1','Used with permission CCLI 23232'); INSERT INTO `config` VALUES (31,'','Preset2','Used without permission'); INSERT INTO `config` VALUES (32,'','ProjectorHost','localhost'); INSERT INTO `config` VALUES (33,'','ShadowColour','#000000'); INSERT INTO `config` VALUES (34,'','ShadowSize','1'); INSERT INTO `config` VALUES (35,'','SpecialBack','Solid'); INSERT INTO `config` VALUES (36,'','SpecialImage','Solid'); INSERT INTO `config` VALUES (37,'','SpecialSong','Today\'s Announcements'); INSERT INTO `config` VALUES (38,'','TrayIcons','1'); INSERT INTO `config` VALUES (39,'','VerticalLocation','Centre'); INSERT INTO `config` VALUES (40,'','Width','1024'); INSERT INTO `config` VALUES (41,'','Xinerama','1'); INSERT INTO `config` VALUES (42,'','App','Load Lyricue Display;lyricue_display'); INSERT INTO `config` VALUES (43,'','App','Close Lyricue Display;lyricue_remote close'); INSERT INTO `config` VALUES (44,'','App','OpenOffice Impress;ooimpress'); INSERT INTO `config` VALUES (45,'','App','Movie Player;totem'); lyricue-4.0.12/data/Add_ip.sql0000664000000000000000000000011013053456656012761 0ustar use lyricDb; ALTER TABLE status ADD ip VARCHAR(16) NOT NULL DEFAULT ''; lyricue-4.0.12/data/dialogImage.ui0000664000000000000000000005542413053456656013643 0ustar False Choose an Image center lyricue-icon.png normal True False vertical True False end gtk-cancel False True True True False True False False 0 gtk-ok False True True True False True False False 1 False True end 0 True False vertical True False vertical True False True False Category False False 0 True False True True 1 False True 0 True True in True True False True True 1 True False True False Sublist False False 0 True False True True 1 False True 2 True False Database actions False True 3 True False spread gtk-add False True True True False True False False 0 gtk-delete False True True True False True False False 1 False True True True False True False 0 0 True False 2 True False gtk-convert False False 0 True False Move True False False 1 False False 2 False True 4 True True 0 True False vertical 480 360 True False gtk-missing-image True True 0 False vertical True False True False 0 Font Colour 0 0 True False 0 Shadow Colour 0 1 True True False False 1 0 True True False False 1 1 False True True False 2 0 False True True False 2 1 Default False True True True 3 0 Default False True True True 3 1 False True 1 True True 1 False False 1 True True 2 buttonImageCancel buttonImageOK lyricue-4.0.12/data/windowEditSong.ui0000664000000000000000000011253113053456656014376 0ustar True False gtk-save-as 700 400 False Add new Song center lyricue-icon.png True False vertical True False False True False File False Import False True False False Export False True False False gtk-save False True False True True Save song as New False True False image1 False gtk-close False True False True True False True False Page False Add Page False True False False Remove Page False True False False Preview Page False True False False False True False Insert preset Copyright False True False Help False _About False True False True True False False 0 True False True False 0 0 Song Name 0 0 True True The title of the song False False 1 0 3 True False 0 0 Song Book 0 1 True True The songbook name False False 1 1 True False Song Number 2 1 True True The song number within the book False False 3 1 True False 0 0 Artist 0 2 True True Who wrote this False False 1 2 3 True False 0 0 Keywords 0 3 True True Topics of song False False 1 3 3 True False 0 0 Copyright 0 4 True True Any copyright information False False 1 4 2 Audit Song False True True False True 0 True True 3 4 False True 1 True True True False True True True True False label27 True False label26 False True True 0 True True True False True False vertical False True True True True True False 0 0 True False 2 True False gtk-add False False 0 True False Add Page True False False 1 False False 0 False True True True True True False 0 0 True False 2 True False gtk-remove False False 0 True False Remove Page True False False 1 False False 1 Display False True True True True True False False 2 Preview False True True True True True False False 3 gtk-spell-check True True True True False True 4 False True 0 100 75 True False 0.5 True False Preview True True True 1 True True True True 2 True False True False True True True False True False 0 0 True False 2 True False gtk-apply False False 0 True False Save and Close True False False 1 False False 0 False True True True False True False 0 0 True False 2 True False gtk-cancel False False 0 True False Cancel True False False 1 False False 1 False True 3 lyricue-4.0.12/data/Lyricue-first-run-sidebar.png0000664000000000000000000002453113053456656016555 0ustar PNG  IHDR@,s(KsBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org< IDATxw|TǵǿwV*^@$`\c)v8y/c;%v\qc₍Mh.ҪjcajWhWmc̙3e=šJ - v/EK /_]@-g:[T wցb=>$_Ƴg}1f` <h4/uWAl__~=o}CqL6nHyy9בµ^Krr2=b "6t<]Kش;j7`h^͌W: jG Dt ?>c=K8s]II>bD57| /o*"REy'/S ؽ{+pڕ[/H:^`0pqnITDs5Z7x$nNJ jL`̙hdXK )63aB6dN7Y3sfRea+A. AXm/BPDtZ@BG}ĝ<̯P" II6%K(/ 7% vo2c<Νh4, OW+N䣏pƏi{odMsdjơRqͷ"/[TTT'&~ 5BO|=:M7ٳgիYjc'44|iKvep!ƶ̛WLvv6ǏJ*++NC;pE6E84A:*eS5(ޒ[۷aDDDQDD"B;y"-\t&L@.k9~t5I5yIREv .`ݺRBTFJ*,u766Rb$*٠R>U>rrBvV[ӈ%IU8:j7qFn tچ=/۟ OW9䨔G),,ছnb׮8 S"q"NA_^3>`h^/P(r<3' ^\Jy(ic(:咜 XmtNe2 ]t^PW^\0-'ptmSIO}'ca9x 3+/I WQV >\. _O&CRV5F&x'9^g6QU,"7nKT.hxx8%%HJg1lM9@ղqZ2 !~ƯPWWFag3)GG婧pj򒤓T_TT+ݫ*>z)==V6\(f3cP(Z.fgpA󖤟2%%^Ok[3f̡t#'ND.o^)^T}I!gu!x啿RSS3 _\@o$-fl̝{ iii' >q!.>ni)pRo~Yځ:Iy]T]\PrƯ7ϋHr2$ɚWHHphii,Z&&f:'\rnJki o ,YX*IH~ MF>iڏܲ.IO?@&oZ}d&]|LeP-BM9t W1DQ$)q>a=[r]~ mP7Ul6+6_ e^wx Occrw B?0 _N)}t=?(Vy㝥##'Sq_âٵ}@ VmTF A`#+Cum>NK>:zT*l4[6~Z>2PM.QRZٿ`۷ܲwhl:Hllrߋ$D*ƍ ## p z[ne6n#$.v"ZmQy(-tj WqAa֬n/tuucl)e**O#LGƃmnhm?ԩW^P{g3m4jϴv{nz~g"up {$}abH)gay*yQ8'tT3z),#^.Wq=oc{V$'X!l,qçWl˸pRqEͧ[GgxuC",l,Q,FFx;w?pT~|݇tz"Sw# WxIN6eyGi?Nz2&d𠑬 @K?0ohk?(:'2?tzCX*'\;T0BC㘐M4Ɲ }{gHUtq0܈+={i0 Q0m@s q5nVͩNx'NS!7^N;FQ]v }sػm8!?Cczuw0[${ncV_Э GcMc܋FՖRyڽ ȕKsYN;Ӫ?Ǔ+Nrz`쵯h|>&S#U.=N}2QN{r Ddr%ٷTb/E4Ԫ/Nx :eO25[tpzv@ϻ߃D@sG&&+LAƦ}9qq+;468dJ>,//!(z6bb&#=2Fr-O&wgCD3L+z-$9gb*CiȠ12]㮧[{FMggQوqD!W5,N+MXm̃Fr"0˔D'1a*&SIa!Lsإ# : iM[WƽT: G)>솝M?8V.U#{9NGo;fN ~ofVǷ?Hι-(_75rGGyl]--7좾aWx(ĺmQc |Bf>VlG R8St^<$)KO)3\ 2DYWRq5GǸ6UZ. %']镗D w.-qNM4?[ɞawy4[aw{IE&Gߞ Kq^cgT.pӧ?EW߸A&~"N89IEvhs969+G64p * 1(\~cubkBc ZOE\MKszS՗Ls9ihK{Z۪K+I.}ȑU#)9_@]Dt#15ķfnhl929q9`Jtw[_I6L_-{ZEBnDA^:b?Jr$~ L g3^q$$NO  7>@dlʿECnUHze(E%q/Qnyw rڵ\JiΝ4GCa673.rNh鴒oX;wWXZQ#‹ SNJ˞f뢺f3=JxckUh?ja0$>sYrfںl]=6h^==Ve.EKm5^4 \r';ލnv+=v_Xr~SHMuys贱~])m && AyEGɉ ȸXDww3'Nw{,@ww ^C`pi25yU*U_]bg#)ttfg\ual)y[_}(+sYnEDD>& Q(/Z{9 CjJ1)/HN0T+i NL= J> W$&2>Z 44& Wn|@nuihndZRRfѧ,- ?# ʺ։(*$/1Y+2ɹ۟{¢E$9^DTTS#/wj嵾0.c۷&BJe[*\;,{Y&'O%&:b;\'sͻCL,Z`jѽb&\=`19^alIDATn;Kc@hnO [XHĄ\45p(K?\`ʔEg~q$9/>"p9|!D_Z cD`u'?o/HQV[MMGEhg lzFt/BM>pm"qh NAS7lyzJGij:4ק +gpQw]xxw>5 o4}W_  : OmTN::0aE $$CDD.n9DעcS鰪ðq(_D|aTAtXW zc55DUi&}SaaXB"I/hW8hoٞy}ƀZ I7 o6qزty0b ul 7>vH)Sh!pn~<Ǝ߻CH!syW3Q fl{qHePGO)#`DLbf~C#Q$AuDv|8垷<dΞAulMIl^" 0V=eb,#?-bp(5``~0-=cWj]QYiHFU?ʋ29gHe}35ŶOP}Xr CU* G nRa{tb/5'I+P(lYKV>C.ӨDڢ3&kH8ShSđh8leե1A&]Ñ[Hv=Ik0I Hg?;a#YQffltG} NQH\IB_  uw+&]\5ȱ$&搟3aaOGUNROn&F"[Πh@QOHw;e zj 5= 52ïJƄCcя&ǏOϰl/~0t巐ͽ?9l6Ӡyy}smNߗ}b6jwE'3fNɜ=Cp!?`f`8DLmaҾf;|r'Uxs2ƀ :X!-=7 (Cw)W8;lhB\]9kg`B 5e໊{#% lvlzdi܏$^"E y3&f.ASxz`zQdR}Y 2nw !D|ҟ rTNN*2`T?cBmi'8;ڃ|?{rB0\[;D7CtDSUE! K⋎Qt/eGe(Ӿ1 p [7wΔ-/q~kE2]OCiE'2e$1p`FRZ/_^1: gv0ed`| ;ymtY 4ED4`L =2=?AZ p!rLn lͷ3'J({TMɼJ>N/[ã#[Hhʘ29-g ,54d{G{/VReܾU|5`SX4DB͙8w kH=D6Ue%#2.bjwv/Z:b3i˦)}:U?g5@j{3N̛IENDB`lyricue-4.0.12/data/dialogAdminLogin.ui0000664000000000000000000001452113053456656014633 0ustar True False Enter Login details True center dialog True False vertical True False end gtk-quit False True True True True False False 0 gtk-ok False True True True True True True False False 1 False True end 0 True False True False 0 Enter the login name and password of your MySQL Administration user 0 0 2 True False 0 Login name 0 1 True False 0 Password 0 2 True True root False False 1 1 True True False True False False 1 2 False True 0 quitbutton6 okbutton6 lyricue-4.0.12/data/dialogPromptEntry.ui0000664000000000000000000001121013053456656015105 0ustar True False True center dialog True False vertical True False end gtk-cancel False True True True False True False False 0 gtk-ok False True True True True False True False False 1 False True end 0 True False vertical True False False False 0 True True True False False False False 1 True True 2 buttonPromptECancel buttonPromptEOK lyricue-4.0.12/data/dialogLoop.ui0000664000000000000000000001464513053456656013532 0ustar 100 5 1 10 1000 10 100 True False Set Loop timer center lyricue-icon.png dialog True False vertical True False end gtk-cancel False True True True False True False False 0 gtk-ok False True True True False True False False 1 False True end 0 True False True False Seconds False False 0 True True False False adjustment3 1 True True 1 True False Milliseconds False False 2 True True False False adjustment4 1 True True 3 True True 2 buttonLoopCancel buttonLoopOK lyricue-4.0.12/data/dialogConfirm.ui0000664000000000000000000000705413053456656014212 0ustar False Confirm Delete Song True center lyricue-icon.png dialog True False vertical True False end gtk-cancel False True True True False True False False 0 gtk-ok False True True True False True False False 1 False True end 0 True False Are you sure? False False 2 cancelbutton1 okbutton1 lyricue-4.0.12/data/windowProfileManager.ui0000664000000000000000000002165413053456656015562 0ustar 400 400 False Profile Manager True True True False vertical True False Manage Available Profiles False True 0 True True True True 1 True False Remove Profile False True True True True True 0 Create Profile False True True True True True 1 False True 2 True False Profiles False True False vertical True False Assign profile to hosts False True 0 True False False True 1 True True True True 2 True False gtk-revert-to-saved False True True True True True True 0 gtk-apply False True True True True True True 1 False True 3 1 True False Hosts 1 False lyricue-4.0.12/data/Update_1.2.sql0000664000000000000000000000154513053456656013420 0ustar use lyricDb; CREATE TABLE associations ( id int(11) NOT NULL auto_increment, playlist int(11) NOT NULL, imagename varchar(255) NOT NULL, absoluteparent int(11) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE audit ( id int(24) NOT NULL auto_increment, songid int(11) NOT NULL, playdate datetime NOT NULL, PRIMARY KEY (id) ); ALTER TABLE lyricMain ADD copyright varchar(100) default ''; DROP TABLE playlist; CREATE TABLE playlist ( playorder int(11) NOT NULL default '0', playlist int(11) NOT NULL default '1', data varchar(50) NOT NULL default '', type varchar(4) default 'song', PRIMARY KEY (playorder) ); CREATE TABLE playlists ( id int(11) NOT NULL default '1', title varchar(50) NOT NULL default '', ref varchar(50) NOT NULL default '', PRIMARY KEY (id) ); INSERT INTO playlists SET id=1, title="Main Playlist", ref=''; lyricue-4.0.12/data/lyricue.desktop0000664000000000000000000000027313053456656014141 0ustar [Desktop Entry] Version=1.0 Type=Application Exec=lyricue Icon=/usr/share/lyricue/lyricue-icon.png Terminal=false Name=Lyricue Categories=AudioVideo; Comment=The GNU Lyric Display System lyricue-4.0.12/data/dialogWindowOffset.ui0000664000000000000000000000671113053456656015232 0ustar False 5 Window Offset False True center normal True False vertical 2 True False end gtk-cancel False True True True True False False 0 gtk-ok False True True True True False False 1 False True end 0 True False Drag this window to the projector screen True True 1 button3 button7 lyricue-4.0.12/data/dialogError.ui0000664000000000000000000000761713053456656013713 0ustar True False Lyricue Error True center lyricue-icon.png dialog True False vertical True False end gtk-ok False True True True False True False False 0 False True end 0 True False center False False 2 True True True False 0.47999998927116394 label True True True False Details True True 3 okbutton2 lyricue-4.0.12/data/access.conf0000664000000000000000000000001513053456656013174 0ustar root = spade lyricue-4.0.12/configure.ac0000664000000000000000000000243213053456656012446 0ustar AC_INIT(lyricue, 4.0.12, http://www.lyricue.org) AC_CONFIG_AUX_DIR([build-aux]) LIBS=`mysql_config --libs` AC_SUBST(LIBS) CFLAGS=`mysql_config --cflags` AC_SUBST(CFLAGS) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) AM_INIT_AUTOMAKE AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) AM_MAINTAINER_MODE AC_ISC_POSIX AC_PROG_CC AM_PROG_CC_STDC AC_HEADER_STDC dnl *************************************************************************** dnl Internationalization dnl *************************************************************************** GETTEXT_PACKAGE=lyricue AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [GETTEXT package name]) AM_GLIB_GNU_GETTEXT IT_PROG_INTLTOOL([0.35.0]) AM_PROG_LIBTOOL YELP_HELP_INIT PKG_CHECK_MODULES(CLUTTER, clutter-1.0) PKG_CHECK_MODULES(CLUTTERGTK, clutter-gtk-1.0) PKG_CHECK_MODULES(CLUTTERGST, clutter-gst-3.0,,[PKG_CHECK_MODULES(CLUTTERGST, clutter-gst-2.0,, [PKG_CHECK_MODULES(CLUTTERGST, clutter-gst-1.0)])]) PKG_CHECK_MODULES(GSTREAMER, gstreamer-1.0,, [PKG_CHECK_MODULES(CLUTTERGST, gstreamer-0.10)]) PKG_CHECK_MODULES(JSONGLIB, json-glib-1.0) PKG_CHECK_MODULES(AVAHI, avahi-client) PKG_CHECK_MODULES(AVAHIGLIB, avahi-glib) AC_OUTPUT([ Makefile src/Makefile po/Makefile.in data/Makefile help/Makefile ]) lyricue-4.0.12/README0000664000000000000000000000254213053456656011042 0ustar Lyricue ------- Introduction: ------------- This is Lyricue. It is a pair of perl applications that combine to create a way in which to display song lyrics on a screen for use in church etc. It was created by Chris Debenham for Gosford Baptist Church. There are two scripts, the first is 'lyricue' which is a interface to add/change/remove songs and to control the playlist. The second is 'lyricue_server' that displays lyrics or bible verses from the playlist. Requirements: ------------- Lyricue requires the following applications to be installed: MySQL version 3 or later Perl 5.6 or later Lyricue requires the following Perl modules: DBI::MySql GTK2 Clutter Clutter-gst Lyricue recommends the following Perl modules Gtk2::TrayIcon Gtk2::Spell Locale::gettext Installation: ------------- Check file INSTALL in the docs directory for installation info Running: -------- To use Lyricue you need to have lyricue_server running on one screen and lyricue on the other screen. A good idea is to put lyricue_server in your x-session startup so that it is always visble on the second screen. You may need to change its size Contact Details: ---------------- The website for Lyricue is http://www.lyricue.org/. Check there for updated versions. Any complaints, changes, suggestions, praise or whatever then e-mail us: lds-users@lists.sourceforge.net lyricue-4.0.12/mkinstalldirs0000664000000000000000000000370413053456656012766 0ustar #! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman # Created: 1993-05-16 # Public domain errstatus=0 dirmode="" usage="\ Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..." # process command line arguments while test $# -gt 0 ; do case $1 in -h | --help | --h*) # -h for help echo "$usage" 1>&2 exit 0 ;; -m) # -m PERM arg shift test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } dirmode=$1 shift ;; --) # stop option processing shift break ;; -*) # unknown option echo "$usage" 1>&2 exit 1 ;; *) # first non-opt arg break ;; esac done for file do if test -d "$file"; then shift else break fi done case $# in 0) exit 0 ;; esac case $dirmode in '') if mkdir -p -- . 2>/dev/null; then echo "mkdir -p -- $*" exec mkdir -p -- "$@" fi ;; *) if mkdir -m "$dirmode" -p -- . 2>/dev/null; then echo "mkdir -m $dirmode -p -- $*" exec mkdir -m "$dirmode" -p -- "$@" fi ;; esac for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d do pathcomp="$pathcomp$d" case $pathcomp in -*) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr else if test ! -z "$dirmode"; then echo "chmod $dirmode $pathcomp" lasterr="" chmod "$dirmode" "$pathcomp" || lasterr=$? if test ! -z "$lasterr"; then errstatus=$lasterr fi fi fi fi pathcomp="$pathcomp/" done done exit $errstatus # Local Variables: # mode: shell-script # sh-indentation: 2 # End: # mkinstalldirs ends here lyricue-4.0.12/Makefile.am0000664000000000000000000000073713053456656012222 0ustar ## Process this file with automake to produce Makefile.in SUBDIRS = src po data help lyricuedocdir = $(docdir) lyricuedoc_DATA = \ README\ COPYING\ AUTHORS\ ChangeLog\ NEWS \ Development.txt \ song_template.txt \ sample_song.xml INTLTOOL_FILES = intltool-extract.in \ intltool-merge.in \ intltool-update.in EXTRA_DIST = $(lyricuedoc_DATA) \ $(INTLTOOL_FILES) DISTCLEANFILES = intltool-extract \ intltool-merge \ intltool-update \ po/.intltool-merge-cache lyricue-4.0.12/intltool-extract.in0000664000000000000000000000000013053456657014012 0ustar lyricue-4.0.12/configure0000775000000000000000000213756613053456657012113 0ustar #! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for lyricue 4.0.12. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: http://www.lyricue.org about your system, including any $0: error possibly output before this message. Then install $0: a modern shell, or manually run the script under such a $0: shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" SHELL=${CONFIG_SHELL-/bin/sh} test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='lyricue' PACKAGE_TARNAME='lyricue' PACKAGE_VERSION='4.0.12' PACKAGE_STRING='lyricue 4.0.12' PACKAGE_BUGREPORT='http://www.lyricue.org' PACKAGE_URL='' # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS AVAHIGLIB_LIBS AVAHIGLIB_CFLAGS AVAHI_LIBS AVAHI_CFLAGS JSONGLIB_LIBS JSONGLIB_CFLAGS GSTREAMER_LIBS GSTREAMER_CFLAGS CLUTTERGST_LIBS CLUTTERGST_CFLAGS CLUTTERGTK_LIBS CLUTTERGTK_CFLAGS CLUTTER_LIBS CLUTTER_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG YELP_HELP_RULES XMLLINT ITSTOOL HELP_DIR YELP_LC_DIST YELP_LC_MEDIA_LINKS LT_SYS_LIBRARY_PATH OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB ac_ct_AR AR DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP SED host_os host_vendor host_cpu host build_os build_vendor build_cpu build LIBTOOL ALL_LINGUAS INTLTOOL_PERL MSGMERGE INTLTOOL_POLICY_RULE INTLTOOL_SERVICE_RULE INTLTOOL_THEME_RULE INTLTOOL_SCHEMAS_RULE INTLTOOL_CAVES_RULE INTLTOOL_XML_NOMERGE_RULE INTLTOOL_XML_RULE INTLTOOL_KBD_RULE INTLTOOL_XAM_RULE INTLTOOL_UI_RULE INTLTOOL_SOUNDLIST_RULE INTLTOOL_SHEET_RULE INTLTOOL_SERVER_RULE INTLTOOL_PONG_RULE INTLTOOL_OAF_RULE INTLTOOL_PROP_RULE INTLTOOL_KEYS_RULE INTLTOOL_DIRECTORY_RULE INTLTOOL_DESKTOP_RULE intltool__v_merge_options_0 intltool__v_merge_options_ INTLTOOL_V_MERGE_OPTIONS INTLTOOL__v_MERGE_0 INTLTOOL__v_MERGE_ INTLTOOL_V_MERGE INTLTOOL_EXTRACT INTLTOOL_MERGE INTLTOOL_UPDATE MKINSTALLDIRS POSUB POFILES PO_IN_DATADIR_FALSE PO_IN_DATADIR_TRUE INTLLIBS INSTOBJEXT GMOFILES DATADIRNAME CATOBJEXT CATALOGS XGETTEXT GMSGFMT MSGFMT_OPTS MSGFMT USE_NLS GETTEXT_PACKAGE EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CC MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V CFLAGS target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_maintainer_mode enable_dependency_tracking enable_nls enable_shared enable_static with_pic enable_fast_install with_aix_soname with_gnu_ld with_sysroot enable_libtool_lock with_help_dir ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP LT_SYS_LIBRARY_PATH ITSTOOL XMLLINT PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR CLUTTER_CFLAGS CLUTTER_LIBS CLUTTERGTK_CFLAGS CLUTTERGTK_LIBS CLUTTERGST_CFLAGS CLUTTERGST_LIBS GSTREAMER_CFLAGS GSTREAMER_LIBS JSONGLIB_CFLAGS JSONGLIB_LIBS AVAHI_CFLAGS AVAHI_LIBS AVAHIGLIB_CFLAGS AVAHIGLIB_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures lyricue 4.0.12 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/lyricue] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of lyricue 4.0.12:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --disable-nls do not use Native Language Support --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-aix-soname=aix|svr4|both shared library versioning (aka "SONAME") variant to provide on AIX, [default=aix]. --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified). --with-help-dir=DIR path where help files are installed Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor LT_SYS_LIBRARY_PATH User-defined run-time library search path. ITSTOOL Path to the `itstool` command XMLLINT Path to the `xmllint` command PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path CLUTTER_CFLAGS C compiler flags for CLUTTER, overriding pkg-config CLUTTER_LIBS linker flags for CLUTTER, overriding pkg-config CLUTTERGTK_CFLAGS C compiler flags for CLUTTERGTK, overriding pkg-config CLUTTERGTK_LIBS linker flags for CLUTTERGTK, overriding pkg-config CLUTTERGST_CFLAGS C compiler flags for CLUTTERGST, overriding pkg-config CLUTTERGST_LIBS linker flags for CLUTTERGST, overriding pkg-config GSTREAMER_CFLAGS C compiler flags for GSTREAMER, overriding pkg-config GSTREAMER_LIBS linker flags for GSTREAMER, overriding pkg-config JSONGLIB_CFLAGS C compiler flags for JSONGLIB, overriding pkg-config JSONGLIB_LIBS linker flags for JSONGLIB, overriding pkg-config AVAHI_CFLAGS C compiler flags for AVAHI, overriding pkg-config AVAHI_LIBS linker flags for AVAHI, overriding pkg-config AVAHIGLIB_CFLAGS C compiler flags for AVAHIGLIB, overriding pkg-config AVAHIGLIB_LIBS linker flags for AVAHIGLIB, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF lyricue configure 4.0.12 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ------------------------------------- ## ## Report this to http://www.lyricue.org ## ## ------------------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by lyricue $as_me 4.0.12, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_aux_dir= for ac_dir in build-aux "$srcdir"/build-aux; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. LIBS=`mysql_config --libs` CFLAGS=`mysql_config --cflags` # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=0;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' am__api_version='1.15' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='lyricue' VERSION='4.0.12' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi ac_config_headers="$ac_config_headers config.h" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 $as_echo "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5 $as_echo_n "checking for library containing strerror... " >&6; } if ${ac_cv_search_strerror+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char strerror (); int main () { return strerror (); ; return 0; } _ACEOF for ac_lib in '' cposix; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_strerror=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_strerror+:} false; then : break fi done if ${ac_cv_search_strerror+:} false; then : else ac_cv_search_strerror=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_strerror" >&5 $as_echo "$ac_cv_search_strerror" >&6; } ac_res=$ac_cv_search_strerror if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi GETTEXT_PACKAGE=lyricue cat >>confdefs.h <<_ACEOF #define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" _ACEOF # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in locale.h do : ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default" if test "x$ac_cv_header_locale_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LOCALE_H 1 _ACEOF fi done if test $ac_cv_header_locale_h = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 $as_echo_n "checking for LC_MESSAGES... " >&6; } if ${am_cv_val_LC_MESSAGES+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { return LC_MESSAGES ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_val_LC_MESSAGES=yes else am_cv_val_LC_MESSAGES=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5 $as_echo "$am_cv_val_LC_MESSAGES" >&6; } if test $am_cv_val_LC_MESSAGES = yes; then $as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h fi fi USE_NLS=yes gt_cv_have_gettext=no CATOBJEXT=NONE XGETTEXT=: INTLLIBS= ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default" if test "x$ac_cv_header_libintl_h" = xyes; then : gt_cv_func_dgettext_libintl="no" libintl_extra_libs="" # # First check in libc # { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in libc" >&5 $as_echo_n "checking for ngettext in libc... " >&6; } if ${gt_cv_func_ngettext_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { return !ngettext ("","", 1) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_ngettext_libc=yes else gt_cv_func_ngettext_libc=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_ngettext_libc" >&5 $as_echo "$gt_cv_func_ngettext_libc" >&6; } if test "$gt_cv_func_ngettext_libc" = "yes" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in libc" >&5 $as_echo_n "checking for dgettext in libc... " >&6; } if ${gt_cv_func_dgettext_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { return !dgettext ("","") ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_dgettext_libc=yes else gt_cv_func_dgettext_libc=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_dgettext_libc" >&5 $as_echo "$gt_cv_func_dgettext_libc" >&6; } fi if test "$gt_cv_func_ngettext_libc" = "yes" ; then for ac_func in bind_textdomain_codeset do : ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_BIND_TEXTDOMAIN_CODESET 1 _ACEOF fi done fi # # If we don't have everything we want, check in libintl # if test "$gt_cv_func_dgettext_libc" != "yes" \ || test "$gt_cv_func_ngettext_libc" != "yes" \ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lintl" >&5 $as_echo_n "checking for bindtextdomain in -lintl... " >&6; } if ${ac_cv_lib_intl_bindtextdomain+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char bindtextdomain (); int main () { return bindtextdomain (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_bindtextdomain=yes else ac_cv_lib_intl_bindtextdomain=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_bindtextdomain" >&5 $as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; } if test "x$ac_cv_lib_intl_bindtextdomain" = xyes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } if ${ac_cv_lib_intl_ngettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ngettext (); int main () { return ngettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_ngettext=yes else ac_cv_lib_intl_ngettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } if test "x$ac_cv_lib_intl_ngettext" = xyes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5 $as_echo_n "checking for dgettext in -lintl... " >&6; } if ${ac_cv_lib_intl_dgettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dgettext (); int main () { return dgettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_dgettext=yes else ac_cv_lib_intl_dgettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5 $as_echo "$ac_cv_lib_intl_dgettext" >&6; } if test "x$ac_cv_lib_intl_dgettext" = xyes; then : gt_cv_func_dgettext_libintl=yes fi fi fi if test "$gt_cv_func_dgettext_libintl" != "yes" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if -liconv is needed to use gettext" >&5 $as_echo_n "checking if -liconv is needed to use gettext... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 $as_echo "" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } if ${ac_cv_lib_intl_ngettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl -liconv $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ngettext (); int main () { return ngettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_ngettext=yes else ac_cv_lib_intl_ngettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } if test "x$ac_cv_lib_intl_ngettext" = xyes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcgettext in -lintl" >&5 $as_echo_n "checking for dcgettext in -lintl... " >&6; } if ${ac_cv_lib_intl_dcgettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl -liconv $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dcgettext (); int main () { return dcgettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_dcgettext=yes else ac_cv_lib_intl_dcgettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dcgettext" >&5 $as_echo "$ac_cv_lib_intl_dcgettext" >&6; } if test "x$ac_cv_lib_intl_dcgettext" = xyes; then : gt_cv_func_dgettext_libintl=yes libintl_extra_libs=-liconv else : fi else : fi fi # # If we found libintl, then check in it for bind_textdomain_codeset(); # we'll prefer libc if neither have bind_textdomain_codeset(), # and both have dgettext and ngettext # if test "$gt_cv_func_dgettext_libintl" = "yes" ; then glib_save_LIBS="$LIBS" LIBS="$LIBS -lintl $libintl_extra_libs" unset ac_cv_func_bind_textdomain_codeset for ac_func in bind_textdomain_codeset do : ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_BIND_TEXTDOMAIN_CODESET 1 _ACEOF fi done LIBS="$glib_save_LIBS" if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then gt_cv_func_dgettext_libc=no else if test "$gt_cv_func_dgettext_libc" = "yes" \ && test "$gt_cv_func_ngettext_libc" = "yes"; then gt_cv_func_dgettext_libintl=no fi fi fi fi if test "$gt_cv_func_dgettext_libc" = "yes" \ || test "$gt_cv_func_dgettext_libintl" = "yes"; then gt_cv_have_gettext=yes fi if test "$gt_cv_func_dgettext_libintl" = "yes"; then INTLLIBS="-lintl $libintl_extra_libs" fi if test "$gt_cv_have_gettext" = "yes"; then $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in /*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then ac_cv_path_MSGFMT="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$MSGFMT" != "no"; then glib_save_LIBS="$LIBS" LIBS="$LIBS $INTLLIBS" for ac_func in dcgettext do : ac_fn_c_check_func "$LINENO" "dcgettext" "ac_cv_func_dcgettext" if test "x$ac_cv_func_dcgettext" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DCGETTEXT 1 _ACEOF fi done MSGFMT_OPTS= { $as_echo "$as_me:${as_lineno-$LINENO}: checking if msgfmt accepts -c" >&5 $as_echo_n "checking if msgfmt accepts -c... " >&6; } cat >conftest.foo <<_ACEOF msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: test 1.0\n" "PO-Revision-Date: 2007-02-15 12:01+0100\n" "Last-Translator: test \n" "Language-Team: C \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" _ACEOF if { { $as_echo "$as_me:${as_lineno-$LINENO}: \$MSGFMT -c -o /dev/null conftest.foo"; } >&5 ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then MSGFMT_OPTS=-c; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } echo "$as_me: failed input was:" >&5 sed 's/^/| /' conftest.foo >&5 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in /*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then ac_cv_path_XGETTEXT="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : CATOBJEXT=.gmo DATADIRNAME=share else case $host in *-*-solaris*) ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : CATOBJEXT=.gmo DATADIRNAME=share else CATOBJEXT=.mo DATADIRNAME=lib fi ;; *-*-openbsd*) CATOBJEXT=.mo DATADIRNAME=share ;; *) CATOBJEXT=.mo DATADIRNAME=lib ;; esac fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$glib_save_LIBS" INSTOBJEXT=.mo else gt_cv_have_gettext=no fi fi fi if test "$gt_cv_have_gettext" = "yes" ; then $as_echo "#define ENABLE_NLS 1" >>confdefs.h fi if test "$XGETTEXT" != ":"; then if $XGETTEXT --omit-header /dev/null 2> /dev/null; then : ; else { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 $as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } XGETTEXT=":" fi fi # We need to process the po/ directory. POSUB=po ac_config_commands="$ac_config_commands default-1" for lang in $ALL_LINGUAS; do GMOFILES="$GMOFILES $lang.gmo" POFILES="$POFILES $lang.po" done if test "$gt_cv_have_gettext" = "yes"; then if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5 $as_echo_n "checking for catalogs to be installed... " >&6; } NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then NEW_LINGUAS="$NEW_LINGUAS $presentlang" fi done LINGUAS=$NEW_LINGUAS { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5 $as_echo "$LINGUAS" >&6; } fi if test -n "$LINGUAS"; then for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done fi fi MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi test -d po || mkdir po if test "x$srcdir" != "x."; then if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then posrcprefix="$srcdir/" else posrcprefix="../$srcdir/" fi else posrcprefix="../" fi rm -f po/POTFILES sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ < $srcdir/po/POTFILES.in > po/POTFILES { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } case "$am__api_version" in 1.01234) as_fn_error $? "Automake 1.5 or newer is required to use intltool" "$LINENO" 5 ;; *) ;; esac INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` if test -n "0.35.0"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.35.0" >&5 $as_echo_n "checking for intltool >= 0.35.0... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5 $as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; } test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || as_fn_error $? "Your intltool is too old. You need intltool 0.35.0 or later." "$LINENO" 5 fi # Extract the first word of "intltool-update", so it can be a program name with args. set dummy intltool-update; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_INTLTOOL_UPDATE+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_UPDATE in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_UPDATE="$INTLTOOL_UPDATE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE if test -n "$INTLTOOL_UPDATE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_UPDATE" >&5 $as_echo "$INTLTOOL_UPDATE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "intltool-merge", so it can be a program name with args. set dummy intltool-merge; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_INTLTOOL_MERGE+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_MERGE in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_MERGE="$INTLTOOL_MERGE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE if test -n "$INTLTOOL_MERGE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_MERGE" >&5 $as_echo "$INTLTOOL_MERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "intltool-extract", so it can be a program name with args. set dummy intltool-extract; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_INTLTOOL_EXTRACT+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_EXTRACT in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_EXTRACT="$INTLTOOL_EXTRACT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT if test -n "$INTLTOOL_EXTRACT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_EXTRACT" >&5 $as_echo "$INTLTOOL_EXTRACT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then as_fn_error $? "The intltool scripts were not found. Please install intltool." "$LINENO" 5 fi if test -z "$AM_DEFAULT_VERBOSITY"; then AM_DEFAULT_VERBOSITY=1 fi INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' INTLTOOL__v_MERGE_0='@echo " ITMRG " $@;' INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' intltool__v_merge_options_0='-q' INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< $@' INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< $@' else INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.$$RANDOM && mkdir $$_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u $$_it_tmp_dir $< $@ && rmdir $$_it_tmp_dir' fi INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' # Check the gettext tools to make sure they are GNU # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case $XGETTEXT in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi XGETTEXT=$ac_cv_path_XGETTEXT if test -n "$XGETTEXT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGMERGE+:} false; then : $as_echo_n "(cached) " >&6 else case $MSGMERGE in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi MSGMERGE=$ac_cv_path_MSGMERGE if test -n "$MSGMERGE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $MSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi MSGFMT=$ac_cv_path_MSGFMT if test -n "$MSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 fi xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 fi # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_INTLTOOL_PERL+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_PERL in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_PERL="$INTLTOOL_PERL" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL if test -n "$INTLTOOL_PERL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_PERL" >&5 $as_echo "$INTLTOOL_PERL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$INTLTOOL_PERL"; then as_fn_error $? "perl not found" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5 $as_echo_n "checking for perl >= 5.8.1... " >&6; } $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 if test $? -ne 0; then as_fn_error $? "perl 5.8.1 is required for intltool" "$LINENO" 5 else IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5 $as_echo "$IT_PERL_VERSION" >&6; } fi if test "x" != "xno-xml"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML::Parser" >&5 $as_echo_n "checking for XML::Parser... " >&6; } if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } else as_fn_error $? "XML::Parser perl module is required for intltool" "$LINENO" 5 fi fi # Substitute ALL_LINGUAS so we can use it in po/Makefile case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.6' macro_revision='2.4.6' ltmain=$ac_aux_dir/ltmain.sh # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case $ECHO in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n "$lt_cv_sys_max_cmd_len"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test yes != "$GCC"; then reload_cmds=false fi ;; darwin*) if test yes = "$GCC"; then reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 $as_echo "$with_sysroot" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 $as_echo_n "checking for a working dd... " >&6; } if ${ac_cv_path_lt_DD+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} if test -z "$lt_DD"; then ac_path_lt_DD_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in dd; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_lt_DD" || continue if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi $ac_path_lt_DD_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_lt_DD"; then : fi else ac_cv_path_lt_DD=$lt_DD fi rm -f conftest.i conftest2.i conftest.out fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 $as_echo "$ac_cv_path_lt_DD" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 $as_echo_n "checking how to truncate binary pipes... " >&6; } if ${lt_cv_truncate_bin+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 $as_echo "$lt_cv_truncate_bin" >&6; } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; 10.[012][,.]*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF fi done # Set options enable_dlopen=no enable_win32_dll=no # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac else enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac else enable_static=yes fi # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac else pic_mode=default fi # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac else enable_fast_install=yes fi shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[5-9]*,yes) { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 $as_echo_n "checking which variant of shared library versioning to provide... " >&6; } # Check whether --with-aix-soname was given. if test "${with_aix_soname+set}" = set; then : withval=$with_aix_soname; case $withval in aix|svr4|both) ;; *) as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 ;; esac lt_cv_with_aix_soname=$with_aix_soname else if ${lt_cv_with_aix_soname+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_with_aix_soname=aix fi with_aix_soname=$lt_cv_with_aix_soname fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 $as_echo "$with_aix_soname" >&6; } if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF #define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o func_cc_basename $compiler cc_basename=$func_cc_basename_result # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/${ac_tool_prefix}file"; then lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/file"; then lt_cv_path_MAGIC_CMD=$ac_dir/"file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC=$CC ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test yes = "$GCC"; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi lt_prog_compiler_pic='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test yes = "$lt_cv_prog_compiler_pic_works"; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test yes = "$lt_cv_prog_compiler_static_works"; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links=nottested if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test no = "$hard_links"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) link_all_deplibs=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' export_dynamic_flag_spec='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='$wl--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs=yes ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) export_dynamic_flag_spec='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test no = "$ld_shlibs"; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct=no hardcode_direct_absolute=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' $wl-bernotok' allow_undefined_flag=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test yes = "$GCC"; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test yes = "$lt_cv_prog_compiler__b"; then archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test yes = "$lt_cv_irix_exported_symbol"; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi link_all_deplibs=no else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler ld_shlibs=yes archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' else archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; osf3*) if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test yes = "$GCC"; then wlarc='$wl' archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='$wl-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='$wl-z,text' allow_undefined_flag='$wl-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='$wl-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test no = "$ld_shlibs" && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([A-Za-z]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && test no != "$hardcode_minus_L"; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test relink = "$hardcode_action" || test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen=shl_load else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen=dlopen else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld fi fi fi fi fi fi ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test yes = "$cross_compiling"; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test yes = "$cross_compiling"; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report what library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC=$lt_save_CC ac_config_commands="$ac_config_commands libtool" # Only expand once: YELP_LC_MEDIA_LINKS=true YELP_LC_DIST=true for yelpopt in ; do case $yelpopt in lc-media-links) YELP_LC_MEDIA_LINKS=true ;; no-lc-media-links) YELP_LC_MEDIA_LINKS= ;; lc-dist) YELP_LC_DIST=true ;; no-lc-dist) YELP_LC_DIST= ;; *) as_fn_error $? "Unrecognized YELP_HELP_INIT option $yelpopt\"" "$LINENO" 5 ;; esac done; # Check whether --with-help-dir was given. if test "${with_help_dir+set}" = set; then : withval=$with_help_dir; else with_help_dir='${datadir}/help' fi HELP_DIR="$with_help_dir" # Extract the first word of "itstool", so it can be a program name with args. set dummy itstool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ITSTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ITSTOOL"; then ac_cv_prog_ITSTOOL="$ITSTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ITSTOOL="itstool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ITSTOOL=$ac_cv_prog_ITSTOOL if test -n "$ITSTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ITSTOOL" >&5 $as_echo "$ITSTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x"$ITSTOOL" = x; then as_fn_error $? "itstool not found" "$LINENO" 5 fi # Extract the first word of "xmllint", so it can be a program name with args. set dummy xmllint; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_XMLLINT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$XMLLINT"; then ac_cv_prog_XMLLINT="$XMLLINT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_XMLLINT="xmllint" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi XMLLINT=$ac_cv_prog_XMLLINT if test -n "$XMLLINT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XMLLINT" >&5 $as_echo "$XMLLINT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x"$XMLLINT" = x; then as_fn_error $? "xmllint not found" "$LINENO" 5 fi YELP_HELP_RULES=' HELP_ID ?= HELP_POT ?= HELP_FILES ?= HELP_EXTRA ?= HELP_MEDIA ?= HELP_LINGUAS ?= _HELP_LINGUAS = $(if $(filter environment,$(origin LINGUAS)),$(filter $(LINGUAS),$(HELP_LINGUAS)),$(HELP_LINGUAS)) _HELP_POTFILE = $(if $(HELP_POT),$(HELP_POT),$(if $(HELP_ID),$(HELP_ID).pot)) _HELP_POFILES = $(if $(HELP_ID),$(foreach lc,$(_HELP_LINGUAS),$(lc)/$(lc).po)) _HELP_MOFILES = $(patsubst %.po,%.mo,$(_HELP_POFILES)) _HELP_C_FILES = $(foreach f,$(HELP_FILES),C/$(f)) _HELP_C_EXTRA = $(foreach f,$(HELP_EXTRA),C/$(f)) _HELP_C_MEDIA = $(foreach f,$(HELP_MEDIA),C/$(f)) _HELP_LC_FILES = $(foreach lc,$(_HELP_LINGUAS),$(foreach f,$(HELP_FILES),$(lc)/$(f))) _HELP_LC_STAMPS = $(foreach lc,$(_HELP_LINGUAS),$(lc)/$(lc).stamp) _HELP_DEFAULT_V = $(if $(AM_DEFAULT_VERBOSITY),$(AM_DEFAULT_VERBOSITY),1) _HELP_V = $(if $(V),$(V),$(_HELP_DEFAULT_V)) _HELP_LC_VERBOSE = $(_HELP_LC_VERBOSE_$(_HELP_V)) _HELP_LC_VERBOSE_ = $(_HELP_LC_VERBOSE_$(_HELP_DEFAULT_V)) _HELP_LC_VERBOSE_0 = @echo " GEN "$(dir $@); all: $(_HELP_C_FILES) $(_HELP_C_EXTRA) $(_HELP_C_MEDIA) $(_HELP_LC_FILES) $(_HELP_POFILES) .PHONY: pot pot: $(_HELP_POTFILE) $(_HELP_POTFILE): $(_HELP_C_FILES) $(_HELP_C_EXTRA) $(_HELP_C_MEDIA) $(AM_V_GEN)if test -d "C"; then d=; else d="$(srcdir)/"; fi; \ $(ITSTOOL) -o "$@" $(foreach f,$(_HELP_C_FILES),"$${d}$(f)") .PHONY: repo repo: $(_HELP_POTFILE) $(AM_V_at)for po in $(_HELP_POFILES); do \ if test "x$(_HELP_V)" = "x0"; then echo " GEN $${po}"; fi; \ msgmerge -q -o "$${po}" "$${po}" "$(_HELP_POTFILE)"; \ done $(_HELP_POFILES): $(AM_V_at)if ! test -d "$(dir $@)"; then mkdir "$(dir $@)"; fi $(AM_V_at)if test ! -f "$@" -a -f "$(srcdir)/$@"; then cp "$(srcdir)/$@" "$@"; fi $(AM_V_GEN)if ! test -f "$@"; then \ (cd "$(dir $@)" && \ $(ITSTOOL) -o "$(notdir $@).tmp" $(_HELP_C_FILES) && \ mv "$(notdir $@).tmp" "$(notdir $@)"); \ else \ (cd "$(dir $@)" && \ $(ITSTOOL) -o "$(notdir $@).tmp" $(_HELP_C_FILES) && \ msgmerge -o "$(notdir $@)" "$(notdir $@)" "$(notdir $@).tmp" && \ rm "$(notdir $@).tmp"); \ fi $(_HELP_MOFILES): %.mo: %.po $(AM_V_at)if ! test -d "$(dir $@)"; then mkdir "$(dir $@)"; fi $(AM_V_GEN)msgfmt -o "$@" "$<" $(_HELP_LC_FILES): $(_HELP_LINGUAS) $(_HELP_LINGUAS): $(_HELP_LC_STAMPS) $(_HELP_LC_STAMPS): %.stamp: %.mo $(_HELP_LC_STAMPS): $(_HELP_C_FILES) $(_HELP_C_EXTRA) $(AM_V_at)if ! test -d "$(dir $@)"; then mkdir "$(dir $@)"; fi $(_HELP_LC_VERBOSE)if test -d "C"; then d="../"; else d="$(abs_srcdir)/"; fi; \ mo="$(dir $@)$(patsubst %/$(notdir $@),%,$@).mo"; \ if test -f "$${mo}"; then mo="../$${mo}"; else mo="$(abs_srcdir)/$${mo}"; fi; \ (cd "$(dir $@)" && $(ITSTOOL) -m "$${mo}" $(foreach f,$(_HELP_C_FILES),$${d}/$(f))) && \ touch "$@" .PHONY: clean-help mostlyclean-am: $(if $(HELP_ID),clean-help) clean-help: rm -f $(_HELP_LC_FILES) $(_HELP_LC_STAMPS) $(_HELP_MOFILES) EXTRA_DIST ?= EXTRA_DIST += $(_HELP_C_EXTRA) $(_HELP_C_MEDIA) EXTRA_DIST += $(if $(YELP_LC_DIST),$(foreach lc,$(HELP_LINGUAS),$(lc)/$(lc).stamp)) EXTRA_DIST += $(foreach lc,$(HELP_LINGUAS),$(lc)/$(lc).po) EXTRA_DIST += $(foreach f,$(HELP_MEDIA),$(foreach lc,$(HELP_LINGUAS),$(wildcard $(lc)/$(f)))) distdir: distdir-help-files distdir-help-files: $(_HELP_LC_FILES) @for lc in C $(if $(YELP_LC_DIST),$(HELP_LINGUAS)) ; do \ $(MKDIR_P) "$(distdir)/$$lc"; \ for file in $(HELP_FILES); do \ if test -f "$$lc/$$file"; then d=./; else d=$(srcdir)/; fi; \ cp -p "$$d$$lc/$$file" "$(distdir)/$$lc/" || exit 1; \ done; \ done; \ .PHONY: check-help check: check-help check-help: for lc in C $(_HELP_LINGUAS); do \ if test -d "$$lc"; \ then d=; \ xmlpath="$$lc"; \ else \ d="$(srcdir)/"; \ xmlpath="$$lc:$(srcdir)/$$lc"; \ fi; \ for page in $(HELP_FILES); do \ echo "$(XMLLINT) --noout --noent --path $$xmlpath --xinclude $$d$$lc/$$page"; \ $(XMLLINT) --noout --noent --path "$$xmlpath" --xinclude "$$d$$lc/$$page"; \ done; \ done .PHONY: install-help install-data-am: $(if $(HELP_ID),install-help) install-help: $(_HELP_LC_FILES) @for lc in C $(_HELP_LINGUAS); do \ $(mkinstalldirs) "$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)" || exit 1; \ done @for lc in C $(_HELP_LINGUAS); do for f in $(HELP_FILES); do \ if test -f "$$lc/$$f"; then d=; else d="$(srcdir)/"; fi; \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ if ! test -d "$$helpdir"; then $(mkinstalldirs) "$$helpdir"; fi; \ echo "$(INSTALL_DATA) $$d$$lc/$$f $$helpdir`basename $$f`"; \ $(INSTALL_DATA) "$$d$$lc/$$f" "$$helpdir`basename $$f`" || exit 1; \ done; done @for f in $(_HELP_C_EXTRA); do \ lc=`dirname "$$f"`; lc=`basename "$$lc"`; \ if test -f "$$f"; then d=; else d="$(srcdir)/"; fi; \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ if ! test -d "$$helpdir"; then $(mkinstalldirs) "$$helpdir"; fi; \ echo "$(INSTALL_DATA) $$d$$f $$helpdir`basename $$f`"; \ $(INSTALL_DATA) "$$d$$f" "$$helpdir`basename $$f`" || exit 1; \ done @for f in $(HELP_MEDIA); do \ for lc in C $(_HELP_LINGUAS); do \ if test -f "$$lc$$f"; then d=; else d="$(srcdir)/"; fi; \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ mdir=`dirname "$$f"`; \ if test "x$mdir" = "x."; then mdir=""; fi; \ if ! test -d "$$helpdir$$mdir"; then $(mkinstalldirs) "$$helpdir$$mdir"; fi; \ if test -f "$$d$$lc/$$f"; then \ echo "$(INSTALL_DATA) $$d$$lc/$$f $$helpdir$$f"; \ $(INSTALL_DATA) "$$d$$lc/$$f" "$$helpdir$$f" || exit 1; \ elif test "x$$lc" != "xC"; then \ if test "x$(YELP_LC_MEDIA_LINKS)" != "x"; then \ echo "$(LN_S) -f $(HELP_DIR)/C/$(HELP_ID)/$$f $$helpdir$$f"; \ dname="$$f"; \ pars="../"; \ while test "$$dname" != "." -a "$$dname" != "/"; do \ pars="../$$pars"; \ dname=$$(dirname "$$dname"); \ done; \ $(LN_S) -f $$pars"C/$(HELP_ID)/$$f" "$$helpdir$$f" || exit 1; \ fi; \ fi; \ done; \ done .PHONY: uninstall-help uninstall-am: $(if $(HELP_ID),uninstall-help) uninstall-help: for lc in C $(_HELP_LINGUAS); do for f in $(HELP_FILES); do \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ echo "rm -f $$helpdir`basename $$f`"; \ rm -f "$$helpdir`basename $$f`"; \ done; done @for f in $(_HELP_C_EXTRA); do \ lc=`dirname "$$f"`; lc=`basename "$$lc"`; \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ echo "rm -f $$helpdir`basename $$f`"; \ rm -f "$$helpdir`basename $$f`"; \ done @for f in $(HELP_MEDIA); do \ for lc in C $(_HELP_LINGUAS); do \ helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \ echo "rm -f $$helpdir$$f"; \ rm -f "$$helpdir$$f"; \ done; \ done; ' if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CLUTTER" >&5 $as_echo_n "checking for CLUTTER... " >&6; } if test -n "$CLUTTER_CFLAGS"; then pkg_cv_CLUTTER_CFLAGS="$CLUTTER_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTER_CFLAGS=`$PKG_CONFIG --cflags "clutter-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CLUTTER_LIBS"; then pkg_cv_CLUTTER_LIBS="$CLUTTER_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTER_LIBS=`$PKG_CONFIG --libs "clutter-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CLUTTER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "clutter-1.0" 2>&1` else CLUTTER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "clutter-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLUTTER_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (clutter-1.0) were not met: $CLUTTER_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables CLUTTER_CFLAGS and CLUTTER_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables CLUTTER_CFLAGS and CLUTTER_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else CLUTTER_CFLAGS=$pkg_cv_CLUTTER_CFLAGS CLUTTER_LIBS=$pkg_cv_CLUTTER_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CLUTTERGTK" >&5 $as_echo_n "checking for CLUTTERGTK... " >&6; } if test -n "$CLUTTERGTK_CFLAGS"; then pkg_cv_CLUTTERGTK_CFLAGS="$CLUTTERGTK_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gtk-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gtk-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGTK_CFLAGS=`$PKG_CONFIG --cflags "clutter-gtk-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CLUTTERGTK_LIBS"; then pkg_cv_CLUTTERGTK_LIBS="$CLUTTERGTK_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gtk-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gtk-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGTK_LIBS=`$PKG_CONFIG --libs "clutter-gtk-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CLUTTERGTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "clutter-gtk-1.0" 2>&1` else CLUTTERGTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "clutter-gtk-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLUTTERGTK_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (clutter-gtk-1.0) were not met: $CLUTTERGTK_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables CLUTTERGTK_CFLAGS and CLUTTERGTK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables CLUTTERGTK_CFLAGS and CLUTTERGTK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else CLUTTERGTK_CFLAGS=$pkg_cv_CLUTTERGTK_CFLAGS CLUTTERGTK_LIBS=$pkg_cv_CLUTTERGTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CLUTTERGST" >&5 $as_echo_n "checking for CLUTTERGST... " >&6; } if test -n "$CLUTTERGST_CFLAGS"; then pkg_cv_CLUTTERGST_CFLAGS="$CLUTTERGST_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-3.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-3.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_CFLAGS=`$PKG_CONFIG --cflags "clutter-gst-3.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CLUTTERGST_LIBS"; then pkg_cv_CLUTTERGST_LIBS="$CLUTTERGST_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-3.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-3.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_LIBS=`$PKG_CONFIG --libs "clutter-gst-3.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "clutter-gst-3.0" 2>&1` else CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "clutter-gst-3.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLUTTERGST_PKG_ERRORS" >&5 pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CLUTTERGST" >&5 $as_echo_n "checking for CLUTTERGST... " >&6; } if test -n "$CLUTTERGST_CFLAGS"; then pkg_cv_CLUTTERGST_CFLAGS="$CLUTTERGST_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_CFLAGS=`$PKG_CONFIG --cflags "clutter-gst-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CLUTTERGST_LIBS"; then pkg_cv_CLUTTERGST_LIBS="$CLUTTERGST_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_LIBS=`$PKG_CONFIG --libs "clutter-gst-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "clutter-gst-2.0" 2>&1` else CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "clutter-gst-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLUTTERGST_PKG_ERRORS" >&5 pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CLUTTERGST" >&5 $as_echo_n "checking for CLUTTERGST... " >&6; } if test -n "$CLUTTERGST_CFLAGS"; then pkg_cv_CLUTTERGST_CFLAGS="$CLUTTERGST_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_CFLAGS=`$PKG_CONFIG --cflags "clutter-gst-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CLUTTERGST_LIBS"; then pkg_cv_CLUTTERGST_LIBS="$CLUTTERGST_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_LIBS=`$PKG_CONFIG --libs "clutter-gst-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "clutter-gst-1.0" 2>&1` else CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "clutter-gst-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLUTTERGST_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (clutter-gst-1.0) were not met: $CLUTTERGST_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else CLUTTERGST_CFLAGS=$pkg_cv_CLUTTERGST_CFLAGS CLUTTERGST_LIBS=$pkg_cv_CLUTTERGST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CLUTTERGST" >&5 $as_echo_n "checking for CLUTTERGST... " >&6; } if test -n "$CLUTTERGST_CFLAGS"; then pkg_cv_CLUTTERGST_CFLAGS="$CLUTTERGST_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_CFLAGS=`$PKG_CONFIG --cflags "clutter-gst-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CLUTTERGST_LIBS"; then pkg_cv_CLUTTERGST_LIBS="$CLUTTERGST_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_LIBS=`$PKG_CONFIG --libs "clutter-gst-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "clutter-gst-1.0" 2>&1` else CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "clutter-gst-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLUTTERGST_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (clutter-gst-1.0) were not met: $CLUTTERGST_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else CLUTTERGST_CFLAGS=$pkg_cv_CLUTTERGST_CFLAGS CLUTTERGST_LIBS=$pkg_cv_CLUTTERGST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi else CLUTTERGST_CFLAGS=$pkg_cv_CLUTTERGST_CFLAGS CLUTTERGST_LIBS=$pkg_cv_CLUTTERGST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CLUTTERGST" >&5 $as_echo_n "checking for CLUTTERGST... " >&6; } if test -n "$CLUTTERGST_CFLAGS"; then pkg_cv_CLUTTERGST_CFLAGS="$CLUTTERGST_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_CFLAGS=`$PKG_CONFIG --cflags "clutter-gst-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CLUTTERGST_LIBS"; then pkg_cv_CLUTTERGST_LIBS="$CLUTTERGST_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_LIBS=`$PKG_CONFIG --libs "clutter-gst-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "clutter-gst-2.0" 2>&1` else CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "clutter-gst-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLUTTERGST_PKG_ERRORS" >&5 pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CLUTTERGST" >&5 $as_echo_n "checking for CLUTTERGST... " >&6; } if test -n "$CLUTTERGST_CFLAGS"; then pkg_cv_CLUTTERGST_CFLAGS="$CLUTTERGST_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_CFLAGS=`$PKG_CONFIG --cflags "clutter-gst-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CLUTTERGST_LIBS"; then pkg_cv_CLUTTERGST_LIBS="$CLUTTERGST_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_LIBS=`$PKG_CONFIG --libs "clutter-gst-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "clutter-gst-1.0" 2>&1` else CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "clutter-gst-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLUTTERGST_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (clutter-gst-1.0) were not met: $CLUTTERGST_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else CLUTTERGST_CFLAGS=$pkg_cv_CLUTTERGST_CFLAGS CLUTTERGST_LIBS=$pkg_cv_CLUTTERGST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CLUTTERGST" >&5 $as_echo_n "checking for CLUTTERGST... " >&6; } if test -n "$CLUTTERGST_CFLAGS"; then pkg_cv_CLUTTERGST_CFLAGS="$CLUTTERGST_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_CFLAGS=`$PKG_CONFIG --cflags "clutter-gst-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CLUTTERGST_LIBS"; then pkg_cv_CLUTTERGST_LIBS="$CLUTTERGST_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"clutter-gst-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "clutter-gst-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_LIBS=`$PKG_CONFIG --libs "clutter-gst-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "clutter-gst-1.0" 2>&1` else CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "clutter-gst-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLUTTERGST_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (clutter-gst-1.0) were not met: $CLUTTERGST_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else CLUTTERGST_CFLAGS=$pkg_cv_CLUTTERGST_CFLAGS CLUTTERGST_LIBS=$pkg_cv_CLUTTERGST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi else CLUTTERGST_CFLAGS=$pkg_cv_CLUTTERGST_CFLAGS CLUTTERGST_LIBS=$pkg_cv_CLUTTERGST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi else CLUTTERGST_CFLAGS=$pkg_cv_CLUTTERGST_CFLAGS CLUTTERGST_LIBS=$pkg_cv_CLUTTERGST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GSTREAMER" >&5 $as_echo_n "checking for GSTREAMER... " >&6; } if test -n "$GSTREAMER_CFLAGS"; then pkg_cv_GSTREAMER_CFLAGS="$GSTREAMER_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GSTREAMER_CFLAGS=`$PKG_CONFIG --cflags "gstreamer-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GSTREAMER_LIBS"; then pkg_cv_GSTREAMER_LIBS="$GSTREAMER_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GSTREAMER_LIBS=`$PKG_CONFIG --libs "gstreamer-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GSTREAMER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gstreamer-1.0" 2>&1` else GSTREAMER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gstreamer-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GSTREAMER_PKG_ERRORS" >&5 pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CLUTTERGST" >&5 $as_echo_n "checking for CLUTTERGST... " >&6; } if test -n "$CLUTTERGST_CFLAGS"; then pkg_cv_CLUTTERGST_CFLAGS="$CLUTTERGST_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-0.10\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-0.10") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_CFLAGS=`$PKG_CONFIG --cflags "gstreamer-0.10" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CLUTTERGST_LIBS"; then pkg_cv_CLUTTERGST_LIBS="$CLUTTERGST_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-0.10\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-0.10") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_LIBS=`$PKG_CONFIG --libs "gstreamer-0.10" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gstreamer-0.10" 2>&1` else CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gstreamer-0.10" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLUTTERGST_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (gstreamer-0.10) were not met: $CLUTTERGST_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else CLUTTERGST_CFLAGS=$pkg_cv_CLUTTERGST_CFLAGS CLUTTERGST_LIBS=$pkg_cv_CLUTTERGST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CLUTTERGST" >&5 $as_echo_n "checking for CLUTTERGST... " >&6; } if test -n "$CLUTTERGST_CFLAGS"; then pkg_cv_CLUTTERGST_CFLAGS="$CLUTTERGST_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-0.10\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-0.10") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_CFLAGS=`$PKG_CONFIG --cflags "gstreamer-0.10" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CLUTTERGST_LIBS"; then pkg_cv_CLUTTERGST_LIBS="$CLUTTERGST_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-0.10\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-0.10") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CLUTTERGST_LIBS=`$PKG_CONFIG --libs "gstreamer-0.10" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gstreamer-0.10" 2>&1` else CLUTTERGST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gstreamer-0.10" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLUTTERGST_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (gstreamer-0.10) were not met: $CLUTTERGST_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables CLUTTERGST_CFLAGS and CLUTTERGST_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else CLUTTERGST_CFLAGS=$pkg_cv_CLUTTERGST_CFLAGS CLUTTERGST_LIBS=$pkg_cv_CLUTTERGST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi else GSTREAMER_CFLAGS=$pkg_cv_GSTREAMER_CFLAGS GSTREAMER_LIBS=$pkg_cv_GSTREAMER_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for JSONGLIB" >&5 $as_echo_n "checking for JSONGLIB... " >&6; } if test -n "$JSONGLIB_CFLAGS"; then pkg_cv_JSONGLIB_CFLAGS="$JSONGLIB_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"json-glib-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "json-glib-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_JSONGLIB_CFLAGS=`$PKG_CONFIG --cflags "json-glib-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$JSONGLIB_LIBS"; then pkg_cv_JSONGLIB_LIBS="$JSONGLIB_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"json-glib-1.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "json-glib-1.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_JSONGLIB_LIBS=`$PKG_CONFIG --libs "json-glib-1.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then JSONGLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "json-glib-1.0" 2>&1` else JSONGLIB_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "json-glib-1.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$JSONGLIB_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (json-glib-1.0) were not met: $JSONGLIB_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables JSONGLIB_CFLAGS and JSONGLIB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables JSONGLIB_CFLAGS and JSONGLIB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else JSONGLIB_CFLAGS=$pkg_cv_JSONGLIB_CFLAGS JSONGLIB_LIBS=$pkg_cv_JSONGLIB_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for AVAHI" >&5 $as_echo_n "checking for AVAHI... " >&6; } if test -n "$AVAHI_CFLAGS"; then pkg_cv_AVAHI_CFLAGS="$AVAHI_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"avahi-client\""; } >&5 ($PKG_CONFIG --exists --print-errors "avahi-client") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_AVAHI_CFLAGS=`$PKG_CONFIG --cflags "avahi-client" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$AVAHI_LIBS"; then pkg_cv_AVAHI_LIBS="$AVAHI_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"avahi-client\""; } >&5 ($PKG_CONFIG --exists --print-errors "avahi-client") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_AVAHI_LIBS=`$PKG_CONFIG --libs "avahi-client" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then AVAHI_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "avahi-client" 2>&1` else AVAHI_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "avahi-client" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$AVAHI_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (avahi-client) were not met: $AVAHI_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables AVAHI_CFLAGS and AVAHI_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables AVAHI_CFLAGS and AVAHI_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else AVAHI_CFLAGS=$pkg_cv_AVAHI_CFLAGS AVAHI_LIBS=$pkg_cv_AVAHI_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for AVAHIGLIB" >&5 $as_echo_n "checking for AVAHIGLIB... " >&6; } if test -n "$AVAHIGLIB_CFLAGS"; then pkg_cv_AVAHIGLIB_CFLAGS="$AVAHIGLIB_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"avahi-glib\""; } >&5 ($PKG_CONFIG --exists --print-errors "avahi-glib") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_AVAHIGLIB_CFLAGS=`$PKG_CONFIG --cflags "avahi-glib" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$AVAHIGLIB_LIBS"; then pkg_cv_AVAHIGLIB_LIBS="$AVAHIGLIB_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"avahi-glib\""; } >&5 ($PKG_CONFIG --exists --print-errors "avahi-glib") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_AVAHIGLIB_LIBS=`$PKG_CONFIG --libs "avahi-glib" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then AVAHIGLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "avahi-glib" 2>&1` else AVAHIGLIB_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "avahi-glib" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$AVAHIGLIB_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (avahi-glib) were not met: $AVAHIGLIB_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables AVAHIGLIB_CFLAGS and AVAHIGLIB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables AVAHIGLIB_CFLAGS and AVAHIGLIB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else AVAHIGLIB_CFLAGS=$pkg_cv_AVAHIGLIB_CFLAGS AVAHIGLIB_LIBS=$pkg_cv_AVAHIGLIB_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi ac_config_files="$ac_config_files Makefile src/Makefile po/Makefile.in data/Makefile help/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi ac_config_commands="$ac_config_commands po/stamp-it" : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by lyricue $as_me 4.0.12, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ lyricue config.status 4.0.12 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ lt_cv_nm_interface \ nm_file_list_spec \ lt_cv_truncate_bin \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ configure_time_dlsearch_path \ configure_time_lt_sys_library_path; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;; "help/Makefile") CONFIG_FILES="$CONFIG_FILES help/Makefile" ;; "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "default-1":C) case "$CONFIG_FILES" in *po/Makefile.in*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile esac ;; "libtool":C) # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 # Copyright (C) 2014 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # The names of the tagged configurations supported by this script. available_tags='' # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shared archive member basename,for filename based shared library versioning on AIX. shared_archive_member_spec=$shared_archive_member_spec # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm into a list of symbols to manually relocate. global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # The name lister interface. nm_interface=$lt_lt_cv_nm_interface # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot # Command to truncate a binary pipe. lt_truncate_bin=$lt_lt_cv_truncate_bin # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Detected run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path # Explicit LT_SYS_LIBRARY_PATH set during ./configure time. configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain=$ac_aux_dir/ltmain.sh # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ;; "po/stamp-it":C) if ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then as_fn_error $? "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5 fi rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp" >"po/stamp-it.tmp" sed '/^#/d s/^[[].*] *// /^[ ]*$/d '"s|^| $ac_top_srcdir/|" \ "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES" sed '/^POTFILES =/,/[^\\]$/ { /^POTFILES =/!d r po/POTFILES } ' "po/Makefile.in" >"po/Makefile" rm -f "po/Makefile.tmp" mv "po/stamp-it.tmp" "po/stamp-it" ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi lyricue-4.0.12/po/0000775000000000000000000000000013053456657010576 5ustar lyricue-4.0.12/po/Makefile.in.in0000664000000000000000000001575613053456657013266 0ustar # Makefile for program source directory in GNU NLS utilities package. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper # Copyright (C) 2004-2008 Rodney Dawes # # This file may be copied and used freely without restrictions. It may # be used in projects which are not available under a GNU Public License, # but which still want to provide support for the GNU gettext functionality. # # - Modified by Owen Taylor to use GETTEXT_PACKAGE # instead of PACKAGE and to look for po2tbl in ./ not in intl/ # # - Modified by jacob berkman to install # Makefile.in.in and po2tbl.sed.in for use with glib-gettextize # # - Modified by Rodney Dawes for use with intltool # # We have the following line for use by intltoolize: # INTLTOOL_MAKEFILE GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = @SHELL@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ top_builddir = @top_builddir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datadir = @datadir@ datarootdir = @datarootdir@ libdir = @libdir@ localedir = @localedir@ subdir = po install_sh = @install_sh@ # Automake >= 1.8 provides @mkdir_p@. # Until it can be supposed, use the safe fallback: mkdir_p = $(install_sh) -d INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ XGETTEXT = @XGETTEXT@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ MSGMERGE = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist GENPOT = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot ALL_LINGUAS = @ALL_LINGUAS@ PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi) USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi) USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done) POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done) DISTFILES = Makefile.in.in POTFILES.in $(POFILES) EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS POTFILES = \ # This comment gets stripped out CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done) .SUFFIXES: .SUFFIXES: .po .pox .gmo .mo .msg .cat AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ INTLTOOL_V_MSGFMT = $(INTLTOOL__v_MSGFMT_$(V)) INTLTOOL__v_MSGFMT_= $(INTLTOOL__v_MSGFMT_$(AM_DEFAULT_VERBOSITY)) INTLTOOL__v_MSGFMT_0 = @echo " MSGFMT" $@; .po.pox: $(MAKE) $(GETTEXT_PACKAGE).pot $(MSGMERGE) $* $(GETTEXT_PACKAGE).pot -o $*.pox .po.mo: $(INTLTOOL_V_MSGFMT)$(MSGFMT) -o $@ $< .po.gmo: $(INTLTOOL_V_MSGFMT)file=`echo $* | sed 's,.*/,,'`.gmo \ && rm -f $$file && $(GMSGFMT) -o $$file $< .po.cat: sed -f ../intl/po2msg.sed < $< > $*.msg \ && rm -f $@ && gencat $@ $*.msg all: all-@USE_NLS@ all-yes: $(CATALOGS) all-no: $(GETTEXT_PACKAGE).pot: $(POTFILES) $(GENPOT) install: install-data install-data: install-data-@USE_NLS@ install-data-no: all install-data-yes: all linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $$dir; \ if test -r $$lang.gmo; then \ $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \ else \ $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ echo "installing $(srcdir)/$$lang.gmo as" \ "$$dir/$(GETTEXT_PACKAGE).mo"; \ fi; \ if test -r $$lang.gmo.m; then \ $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \ echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \ else \ if test -r $(srcdir)/$$lang.gmo.m ; then \ $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \ $$dir/$(GETTEXT_PACKAGE).mo.m; \ echo "installing $(srcdir)/$$lang.gmo.m as" \ "$$dir/$(GETTEXT_PACKAGE).mo.m"; \ else \ true; \ fi; \ fi; \ done # Empty stubs to satisfy archaic automake needs dvi info ctags tags CTAGS TAGS ID: # Define this as empty until I found a useful application. install-exec installcheck: uninstall: linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \ rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \ done check: all $(GETTEXT_PACKAGE).pot rm -f missing notexist srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi mostlyclean: rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp rm -f .intltool-merge-cache clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES stamp-it rm -f *.mo *.msg *.cat *.cat.m *.gmo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f Makefile.in.in distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(DISTFILES) dists="$(DISTFILES)"; \ extra_dists="$(EXTRA_DISTFILES)"; \ for file in $$extra_dists; do \ test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \ done; \ for file in $$dists; do \ test -f $$file || file="$(srcdir)/$$file"; \ ln $$file $(distdir) 2> /dev/null \ || cp -p $$file $(distdir); \ done update-po: Makefile $(MAKE) $(GETTEXT_PACKAGE).pot tmpdir=`pwd`; \ linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ echo "$$lang:"; \ result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ if $$result; then \ if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.gmo failed!"; \ rm -f $$tmpdir/$$lang.new.po; \ fi; \ done Makefile POTFILES: stamp-it @if test ! -f $@; then \ rm -f stamp-it; \ $(MAKE) stamp-it; \ fi stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \ $(SHELL) ./config.status # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: lyricue-4.0.12/po/pt_BR.po0000664000000000000000000011336113053456656012150 0ustar # Brazilian Portuguese translation for lyricue # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the lyricue package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: lyricue\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2013-01-20 21:23+0000\n" "Last-Translator: Samuel William Cortes Rodrigues \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:27+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: pt_BR\n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "Erro de SQL %u: %s" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "Sinto muito, mas não pude abrir o banco de dados lyric.\n" "Por favor, confirme se o Lyricue está instalado corretamente e se o MySQL " "está em execução" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" "Sinto muito, mas não pude abrir o banco de dados da Bíblia.\n" "Por favor, confirme se o Lyricue está instalado corretamente e se o banco de " "dados da Bíblia existe.\n" "O banco de dados solicitado chama-se " #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "Sinto muito, mas não pude abrir o banco de dados de mídias.\n" "Por favor, confirme se o Lyricue está instalado corretamente e o MySQL está " "em execução" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" "Impossível preparar a consulta.\n" "Houve falha no MySQL?" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" "Impossível executar a consulta.\n" "Houve falha no MySQL?" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" "Sinto muito, não foi possível ouvir na rede.\n" "Por favor, certifique-se se eu já não estou em execução" #: ../src/lyricue:327 msgid "Could not open " msgstr "Não é possível abrir " #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" "Impossível ler o arquivo, você tem certeza que ele existe?\n" "O arquivo em questão era " #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" "Impossível escrever no arquivo, você não deve ter permissões suficientes.\n" "Por favor confira as permissões para " #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "Nenhuma Bíblia foi selecionada\n" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "Título" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "Livro" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "Número da canção" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "/Editar Canção" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "/Apagar Canção" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "/Atualizar Lista" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "/Livro de Canções - Ordem -> No." #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "/Livro de Canções - Ordem -> Nome" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "/Adicionar à lista de reprodução" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "/Duplicar item" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "/Remover da lista de reprodução" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "/Atualizar a lista de reprodução" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "/Inverter a linha exibida" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "/Repetir este item da lista de reprodução" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "/Associe o plano de fundo" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "/Desassocie o plano de Fundo" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "/Mova da sub-lista para a /principal" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "/Mova para sub-lista/" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "Você tem certeza que deseja apagar " #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Artista" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "Página " #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "Página" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "selecione a canção para importar" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "Você tem certeza que deseja limpar a atual lista de reprodução?" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "Confirme a limpeza da lista de reprodução" #: ../src/lyricue:3902 msgid "Select " msgstr "Selecione " #: ../src/lyricue:3902 msgid " Colour" msgstr " Cor" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "Conteúdos da canção" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "Canções disponíveis" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "Número total de canções disponíveis" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "Nome da canção" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "Livro de canção" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "Digite o nome do arquivo para exportar" #: ../src/lyricue:5313 msgid "Song No" msgstr "Canção No" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "Criar nova lista de reprodução" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "Nome da lista de reprodução" #: ../src/lyricue:5784 msgid "Copying " msgstr "Copiando " #: ../src/lyricue:5826 msgid "Renaming " msgstr "Renomeando " #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "Carregar mostrador do Lyricue" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "Fechar o mostrador do Lyricue" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "Lyricue" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "Importando apresentação" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "Selecionar Categoria" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "Selecione um diretório" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "Cancelar" #: ../src/lyricue:7598 msgid "OK" msgstr "OK" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "Criar nova sub-lista" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "Nome da sub-lista" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "Escolha um plano de fundo" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "Define como padrão" #: ../src/lyricue:8635 msgid "Add a user" msgstr "Adicionar um usuário" #: ../src/lyricue:8637 msgid "Enter username" msgstr "Entre com o nome do usuário" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "Você tem certeza que deseja sair do Lyricue?" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" "Impossível conectar ao banco de dados como administrador, talvez haja erro " "no banco de dados.\n" "Por favor repita a conexão como administrador." #: ../src/lyricue:11275 msgid "Login Error" msgstr "Erro no login" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "Não foi encontrado nenhum DVD" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "Impossível abrir o DVD. Talvez não haja mídia no drive" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "Bíblia instalado de " #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "Impossível carregar de " #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "Instalar novas Bíblias" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "Assistente de primeira execução" #: ../src/lyricue:12982 msgid "Welcome" msgstr "Bem-vindo" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "Localização" #: ../src/lyricue:12994 msgid "Database login" msgstr "Conectar banco de dados" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "Pasta de imagens" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr " Nome de usuário/Senha aceito" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "Falha em Nome de usuário/Senha" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "Escrito por " #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" "Como esta é a primeira vez que você executa o Lyricue, passaremos por alguns " "ajustes iniciais" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "Senha:" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "Nome de usuário:" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "root" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" "Lyricue usa MySQL para armazenar estes dados.\n" "Para acessar o MySQL eu irei criar um usuário especial 'lyric'\n" "Para fazer isto eu preciso de sua senha do usuário root do MySQL.\n" "Nota: Esta senha não é armazenada" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" "Lyricue requer um lugar para carregar as imagens e planos de fundo.\n" "A pasta de imagens e planos de fundo pode ser a mesma ou mantidas em " "separado.\n" "Por favor selecione uma pasta adequada para cada um." #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "Diretório de imagens" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "Pasta de planos de fundo" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "Pasta" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "Nenhum selecionado" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "Esquerda" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "Centro" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "Direita" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "Superior" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "Inferior" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "Adicionar detalhes de Login" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" "Entre com o nome e senha\n" "de seu Administrador MySQL" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "Nome de login" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "Senha" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "Administração do Lyricue" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "Nome de usuário" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "Lista de reprodução" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "Editar" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "Apagar" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "Tela" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "Administrador" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "Adicionar usuário" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "Confirme exclusão de canção" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "Você tem certeza?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "Selecionar banco de dados para cópia de segurança" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "Canções, Lista de reprodução, Uso" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "Imagens , planos de fundo, mídia" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "Salvar o arquivo como" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "Navegar" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "Selecionar diretório" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "Hora final" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "Duração" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "Seleciona DVD" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "Selecione o número do DVD para tocar" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "Horário inicial" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "Selecione o período de tempo" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "Erro no Lyricue" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "rótulo" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Detalhes" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "Selecionar arquivo" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "Escolha uma imagem" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Categoria" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "Sub-lista" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "Ações de banco de dados" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "Mover" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "Cor da fonte" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "Cor da sombra" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "Definir como padrão" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "Importar Dados do Arquivo" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "Use esta caixa para importar a lista de canções" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "Lista de canções de exemplo" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "Selecione o arquivo para importar" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "Definir o tempo de repetição" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "Segundos" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "Milisegundos" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "Nenhuma" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "Desvanecer" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "Preferências" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "Fontes usados para o projetor" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "Rodapé" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "Principal" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "Cabeçalho" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "Deslocamento em sombra" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "Mensagem na tela" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "Fontes" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "Configurações para o projetor" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "Justificações de texto" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "Localização de texto vertical" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "Localização de texto horizontal" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "Margem vertical" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "Margem horizontal" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "Transição Padrão" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "Deslocamento de janela" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "Diversos padrões" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "Virar páginas" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "Expandir itens quando adicionado à lista de reprodução" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "Auditar Canções" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "Pré-visualização dinâmica" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "Minivisão" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "Avançado" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "Bíblia" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "Itens especiais que estarão em primeiro nas listas" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "Imagens" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "Planos de fundo" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "Anúncios de Hoje" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "Opções de recuperação" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "Cópia de segurança da base de dados" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "Restaurar banco de dados" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "Pesquisa avançada" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "Procurar letras" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "Pesquisar" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "Adicionar à lista de reprodução" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "Selecione canções para importar" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "Selecionar tudo" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "Desmarcar tudo" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "Deslocamento de janela" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "Arraste esta janela para a tela de projeção" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "Sobre o Lyricue" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "Versão #VERSION#" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" "Escrito por:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "Agradecimentos" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "Instalador de Biblía" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" "Selecione o arquivo contendo a Bíblia que você deseja importar.\n" "Novas Bíblias podem ser baixadas dos sítios abaixo.\n" "Clique no botão relacionado para carregar o sítio em seu navegador.\n" "Após ter baixado, retorne aqui para instalar." #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" "Bíblias Sword\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" "Base de dados de Bíblias Lyricue\n" "http://www.lyricue.org/bibles" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "Selecione arquivo para instalar" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "Escolha um livro" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "Gênesis" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "Êxodo" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "Levítico" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "Números" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "Deuteronômio" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "Josué" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "Juízes" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "Rute" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "1 Samuel" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "2 Samuel" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "1 Reis" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "2 Reis" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "1 Crônicas" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "2 Crônicas" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "Esdras" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "Neemias" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "Ester" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "Jó" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "Salmos" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "Provérbios" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "Eclesiastes" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "Cantares de Salomão" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "Isaías" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "Jeremias" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "Lamentações" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "Ezequiel" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "Daniel" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "Oséias" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "Joel" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "Miquéias" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "Ageu" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "Amós" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "Obadias" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "Jonas" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "Naum" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "Habacuque" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "Sofonias" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "Zacarias" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "Malaquias" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "Cântico dos Cânticos" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "Novo Testamento" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "Mateus" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "Marcos" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "Lucas" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "João" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "Atos" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "Gálatas" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "1 Tessalonicenses" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "Romanos" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "1 Coríntios" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "2 Coríntios" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "Efésios" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "Filipenses" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "Colossenses" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "1 Timóteo" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "2 Tessalonicenses" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "2 Timóteo" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "Tito" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "Filemon" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "Hebreus" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "Tiago" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "1 Pedro" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "2 Pedro" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "1 João" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "2 João" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "3 João" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "Judas" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "Apocalipse" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "Antigo Testamento" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "Adicionar nova canção" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "Arquivo" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "Importar" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "Exportar" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Adicionar página" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "Remover página" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "Pré-visualizar página" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "Inserir Copyright presente" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "Ajuda" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "O nome da canção" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "O nome do livro da canção" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "O número da canção dentro do livro" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "Quem escreveu isto" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "Palavras-chave" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "Tópicos da canção" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Copyright" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "Algumas informações de copyright" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "Auditar Canção" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "Pré-visualizar" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "Salvar e fechar" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "Item da lista de reprodução" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Adicionar arquivo" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "Página Anterior" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "Próxima página" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "Limpar texto" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "Aplicativos" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "Pág. Anterior" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "Próximo ponto" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "Limpar tela" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "Iniciar o vizualizador" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "Procurar a lista de canções diretamente" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "Limpar campo de pesquisa" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "Novo" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "Adicionar a canção selecionada à lista de reprodução" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "Canções" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Atual" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "Anterior" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "Pré-visualizar plano de fundo" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "Adicionar à lista de reprodução" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "Arquivos" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "Entre com verso para exibir" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "<" #: ../data/windowMain.ui.h:64 msgid ">" msgstr ">" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "Adicionar estes versos à lista de reprodução" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "Mostre agora" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "Mostrar" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "Auto-exibir" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "Texto do slide" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "Rotação do Texto" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "Aleatório" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "Na Direção" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "Fora de direção" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "Direção de rotação" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "Eixo X" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "Eixo Y" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "Eixo-Z" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "Aplicar ao Selecionado" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "Aplicar à lista de reprodução" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "Transições" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "Nenhuma lista de reprodução carregada" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "Escolha sua lista de reprodução" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "Carregar" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "Renomear" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "Copiar" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "Mover o item atual para baixo" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "Mover para baixo" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "Mover o item atual para cima" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "Mover para cima" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "Remova o item selecionado da lista de reprodução" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "Remover" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "Adicionar sublista" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "Desfocar" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "Atualização rápida" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "Salvar" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "Você nunca deveria ler isto" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "Canção anterior" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "Próxima canção" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "Limpar a tela" lyricue-4.0.12/po/en_US.po0000664000000000000000000007420413053456656012155 0ustar # en_US translation of lyricue. # Copyright (C) 2005 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Chris Debenham , 2004. # msgid "" msgstr "" "Project-Id-Version: lyricue 2.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2012-10-19 01:16+0000\n" "Last-Translator: ChrisDebenham \n" "Language-Team: en_US \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:27+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: \n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" #: ../src/lyricue:327 msgid "Could not open " msgstr "" #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "" #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "" #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "" #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "" #: ../src/lyricue:3902 msgid "Select " msgstr "" #: ../src/lyricue:3902 msgid " Colour" msgstr "" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "" #: ../src/lyricue:5313 msgid "Song No" msgstr "" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "" #: ../src/lyricue:5784 msgid "Copying " msgstr "" #: ../src/lyricue:5826 msgid "Renaming " msgstr "" #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "" #: ../src/lyricue:7598 msgid "OK" msgstr "" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "" #: ../src/lyricue:8635 msgid "Add a user" msgstr "" #: ../src/lyricue:8637 msgid "Enter username" msgstr "" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" #: ../src/lyricue:11275 msgid "Login Error" msgstr "" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "" #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "" #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "" #: ../src/lyricue:12982 msgid "Welcome" msgstr "" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "" #: ../src/lyricue:12994 msgid "Database login" msgstr "" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "" #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "File" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "Font Color" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "Shadow Color" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "" #: ../data/windowMain.ui.h:64 msgid ">" msgstr "" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "" lyricue-4.0.12/po/tr.po0000664000000000000000000010072213053456656011564 0ustar # Turkish translation for lyricue # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the lyricue package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: lyricue\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2013-03-19 13:01+0000\n" "Last-Translator: Caleb Maclennan \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: tr\n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" #: ../src/lyricue:327 msgid "Could not open " msgstr "açılamadı " #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" "Dosya okuyamadı, var olduğundan emin misiniz?\n" "Istediği dosya idi " #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "Başlık" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "Kitap" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "İlahi numarısı" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "/İlahi Düzelt" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "/İlahi Sil" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "/List Yenilen" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "" #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "Oynatma Listesine Ekle" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "Oynatma Listesinden Kaldır" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "Oynatma Listesi Yenilen" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "/Arkaplanı onayla" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "/Arkaplanı kaldır" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "silmek istediğinden emin misin? " #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Sanatçı" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "Sayfa " #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "Sayfa" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "" #: ../src/lyricue:3902 msgid "Select " msgstr "Şeç " #: ../src/lyricue:3902 msgid " Colour" msgstr " Renk" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "" #: ../src/lyricue:5313 msgid "Song No" msgstr "Ilahi No" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "Yeni Oynatma Listesi Yarat" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "Oynatma Listesinin Adı" #: ../src/lyricue:5784 msgid "Copying " msgstr "" #: ../src/lyricue:5826 msgid "Renaming " msgstr "Yeniden adlandır " #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "Lyricue" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "İptal" #: ../src/lyricue:7598 msgid "OK" msgstr "Tamam" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "Öntanımlı Olarak Ayarla" #: ../src/lyricue:8635 msgid "Add a user" msgstr "Kulanıcı Ekle" #: ../src/lyricue:8637 msgid "Enter username" msgstr "Kullanıcı adını gir" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" #: ../src/lyricue:11275 msgid "Login Error" msgstr "Giriş Hatası" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "Kustal Kitap şuradan yüklendi: " #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "" #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "Yeni Kutsal Kitapları yükle" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "" #: ../src/lyricue:12982 msgid "Welcome" msgstr "Hoş Geldiniz" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "" #: ../src/lyricue:12994 msgid "Database login" msgstr "Veritabanı girişi" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "Kullanıcı AdI/Şifre kabul edildi" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "Kullanıcı Adı/Şifre başarısız oldu" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "" #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "Şifre:" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "Kullanıcı Adı:" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "root" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "Resim Dizini" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "Arkaplan Dizini" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "Dizin" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "Hiçbiri seçilmedi" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "Orta" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "Üst" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "Alt" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "Giriş adı" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "Şifre" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "Lyricue Yönetim" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "Kullanıcı Adı" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "Oynatma Listesi" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "Düzenle" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "Sil" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "Görüntü" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "Kullanıcı ekle" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "Emin misiniz?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "Yedekleyecek veritabanlarI seç" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "Gözat" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "Dizin seç" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "Lyricue Hatası" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "etiket" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Ayrıntılar" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "Dosya Seç" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Sınıf" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "Taşı" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "İçe aktarılacak dosyayı seç" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "Saniye" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "Tercihler" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "Altlık" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "Başlık" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "Yazı Tipleri" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "Çeşitli varsayılanlar" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "İleri düzey" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "Kutsal Kitap" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "Görüntüler" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "Arkaplanlar" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "Bugünkü Duyurular" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "Gelişmiş Arama" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "Ara" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "Oynatma listesine ekle" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "Hepsini Seç" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "Seçimi Temizle" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "Lyricue Hakkında" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "Teşekkürler" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "Kutsal Kitap Yükleyici" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "Sword kitaplar" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" "LyricueDB kitaplar\n" "http://www.lyricue.org/bibles" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "Kitabı Seç" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "Yaratılış" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "Mısır'dan Çıkış" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "Levililer" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "Çölde Sayım" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "Yasa'nın Tekrarı" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "Yeşu" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "Hakimler" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "Rut" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "1. Samuel" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "2. Samuel" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "1. Krallar" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "2. Krallar" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "1. Tarihler" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "2. Tarihler" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "Ezra" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "Nehemya" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "Ester" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "Eyüp" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "Mezmurlar" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "Süleyman'ın Özdeyişleri" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "Vaiz" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "Ezgiler Ezgisi" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "Yeşaya" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "Yeremya" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "Ağıtlar" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "Hezekiel" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "Daniel" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "Hoşea" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "Yoel" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "Mika" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "Hagay" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "Amos" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "Ovadya" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "Yunus" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "Nahum" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "Habakkuk" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "Sefanya" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "Zekeriya" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "Malaki" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "Ezgiler Ezgisi" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "Yeni Antlaşma" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "Matta" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "Markos" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "Luka" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "Yuhanna" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "Elçilerin İşleri" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "Galatyalılar" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "1. Selanikiler" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "Romalılar" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "1. Korintliler" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "2. Korintliler" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "Efesliler" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "Filipililer" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "Koloseliler" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "1. Timoteos" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "2. Selanikiler" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "2. Timoteos" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "Titus" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "Filimon" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "İbraniler" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "Yakup" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "1. Petrus" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "2. Pegrus" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "1. Yuhanna" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "2. Yuhanna" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "3. Yuhanna" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "Yahuda" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "Vahiy" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "Eski Antlaşma" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "İçeri Aktar" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "Dışarı Aktar" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Sayfa Ekle" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "Sayfayı Kaldır" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "Ilahin başlığı" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "Anahtar Kelimeler" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Telif Hakkı" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "Ön İzleme" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "Kaydet ve Kapat" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Dosya Ekle" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "Önceki sayfa" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "Sonraki sayfa" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "Sonraki Nokta" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "Yeni" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "Seçilmiş ilahini oynatma listesine ekle" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "İlahiler" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Şimdiki" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "Önceki" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "Oynatma listesine Ekle" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "Dosyalar" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "" #: ../data/windowMain.ui.h:64 msgid ">" msgstr "" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "Şu ayetleri oynatma listesine ekle" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "Hemen Göster" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "Göster" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "X-Ekseni" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "Y-Ekseni" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "Z-Ekseni" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "Oynatma Listesini Seç" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "Yükle" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "Yeniden Adlandır" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "Aşağı Taşı" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "Yukarı Taşı" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "Kaldır" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "Kaydet" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "" lyricue-4.0.12/po/es.po0000664000000000000000000011352313053456656011551 0ustar msgid "" msgstr "" "Project-Id-Version: lyricue 2.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2014-01-25 11:51+0000\n" "Last-Translator: Adolfo Jayme \n" "Language-Team: Español \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: \n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "Error de SQL %u: %s" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "No se pudo abrir la base de datos de letras.\n" "Confirme que Lyricue está instalado correctamente y que MySQL esté corriendo." #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" "No se pudo abrir la base de datos bíblica.\n" "Confirme que Lyricue está instalado correctamente y que exista la base de " "datos bíblica actual.\n" "La base de datos solicitada es " #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "No se pudo abrir la base de datos multimedia.\n" "Confirme que Lyricue está instalado correctamente y que MySQL esté corriendo." #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" "No se puede preparar la consulta.\n" "¿Acaso murió MySQL?" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" "No se puede ejecutar la consulta.\n" "¿Acaso murió MySQL?" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" "No se puede escuchar la red.\n" "Asegúrese que otra instancia de Lyricue no esté corriendo." #: ../src/lyricue:327 msgid "Could not open " msgstr "No se puede abrir " #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" "No se puede leer el archivo, ¿está seguro que existe?\n" "El archivo solicitado fue " #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" "No se puede escribir en el archivo, puede que no tenga suficientes " "permisos.\n" "Compruebe los permisos para " #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" "\n" "Uso: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "Ninguna Biblia ha sido seleccionada\n" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "Título" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "Libro" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "Número de canción" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "/Editar canción" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "/Eliminar canción" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "/Actualizar lista" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "/Ordenar - Libro de cantos -> No" #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "/Ordenar - Libro de cantos -> Nombre" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "/Añadir a lista de reproducción" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "/Duplicar elemento" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "/Quitar elemento de la lista" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "/Actualizar lista de reproducción" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "/Invertir visualización de línea" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "/Reproducir este elemento de la lista en bucle" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "/Asociar fondo" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "/Desasociar fondo" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "/Mover a sublista/Principal" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "/Mover a sublista/" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "Se eliminará " #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Artista" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "Página " #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "Página" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "Seleccione la canción a importar" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "¿Desea limpiar la lista de reproducción actual?" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "Confirmar limpiar lista de reproducción" #: ../src/lyricue:3902 msgid "Select " msgstr "Seleccionar " #: ../src/lyricue:3902 msgid " Colour" msgstr " Color" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "Contenidos de canción" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "Canciones disponibles" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "Canciones disponibles actualmente" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "Nombre de la canción" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "Libro de cantos" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "Crear un perfil nuevo" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "Crear un perfil nuevo" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "Nombre del perfil" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "Introduzca el nombre del archivo a exportar" #: ../src/lyricue:5313 msgid "Song No" msgstr "Número de canción" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "Crear nueva lista de reproducción" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "Nombre de la lista de reproducción" #: ../src/lyricue:5784 msgid "Copying " msgstr "Copiando " #: ../src/lyricue:5826 msgid "Renaming " msgstr "Renombrando " #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "Iniciar el Display Lyricue" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "Cerrar el Display Lyricue" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "Lyricue" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "Importando presentación" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "Seleccionar categoría" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "Elija un directorio" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "Cancelar" #: ../src/lyricue:7598 msgid "OK" msgstr "Aceptar" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "Crear nueva sublista" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "Nombre de sublista" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "Elegir fondo" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "Establecer como predeterminado" #: ../src/lyricue:8635 msgid "Add a user" msgstr "Añadir usuario" #: ../src/lyricue:8637 msgid "Enter username" msgstr "Introducir nombre de usuario" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "Confirmar eliminación de la imagen" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "Confirmar restauración de la base de datos" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "AVISO: Si restaura esta base de datos se sobreescribirá la actual" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "¿Está seguro que desea cerrar Lyricue?" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" "No se puede entrar a la base de datos como admin, quizá la base de datos no " "esté disponible.\n" "Vuelva a introducir sus datos e intente nuevamente" #: ../src/lyricue:11275 msgid "Login Error" msgstr "Error al entrar" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "Ningún título encontrado en el DVD" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "No se puede abrir el DVD. Verifique que ha introducido el disco." #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "Biblia instalada desde " #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "No se puede cargar desde " #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "Instalar nuevas Biblias" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "Asistente de la primera ejecución" #: ../src/lyricue:12982 msgid "Welcome" msgstr "Bienvenido" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "Ubicación" #: ../src/lyricue:12994 msgid "Database login" msgstr "Entrada a la base de datos" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "Carpeta de imágenes" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "Usuario/Contraseña aceptados" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "Usuario/Contraseña rechazados" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "Escrito por " #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" "Debido a que esta es la primera vez que utiliza Lyricue, debe hacer cierta " "configuración inicial." #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "Contraseña:" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "Nombre usuario:" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "root" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" "Lyricue utiliza MySQL para guardar datos.\n" "Para acceder a MySQL se creará un usuario especial 'lyric'\n" "Para ello es necesaria la contraseña del usuario root mysql.\n" "Nota: La contraseña no será almacenada" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" "Lyricue requiere de una carpeta de imágenes y fondos.\n" "Las carpetas de Imágenes y la de Fondos pueden ser la misma o estar " "separadas.\n" "Seleccione la ubicación de cada una." #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "Carpeta de imágenes" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "Carpeta de fondos" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "Carpeta" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "Nada seleccionado" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "Izquierda" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "Centro" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "Derecha" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "Arriba" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "Abajo" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "Introduzca detalles de entrada" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" "Introduzca el nombre de entrada y contraseña\n" "del administrador de MySQL" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "Nombre de usuario" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "Contraseña" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "Administración de Lyricue" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "Nombre usuario" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "Lista de reproducción" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "Editar" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "Eliminar" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "Mostrar en pantalla" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "Admin" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "Añadir usuario" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "Confirmar borrar canción" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "¿Está seguro?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "Seleccionar las bases de datos a respaldar" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "Cantos, listas de reproducción, uso" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "Imágenes, fondos, medios" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "Archivo para guardar como" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "Navegar" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "Seleccionar carpeta" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "Tiempo de fin" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "Duración" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "Seleccionar Título del DVD" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "Seleccionar el numero del título a reproducir" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "Tiempo de inicio" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "Seleccionar el período de tiempo" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "Error de Lyricue" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "etiqueta" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Detalles" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "Seleccionar archivo" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "Elija una imagen" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Categoría" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "Sublista" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "Acciones en base de datos" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "Mover" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "Color de tipografía" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "Color de sombra" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "Predeterminado" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "Importar datos desde archivo" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "Utilice esta ventana para importar listas de cantos" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "Listas de canto de ejemplo" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "Seleccione el archivo a importar" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "Establecer tiempo de bucle" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "Segundos" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "Milisegundos" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "Ninguno" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "Atenuación" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "Preferencias" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "Configuración del perfil:" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "Tipografías usadas para el proyector" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "Pie de página" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "Principal" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "Encabezado" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "Desplazamiento de la sombra" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "OSD" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "Tipografías" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "Configuración del proyector" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "Alineación del texto" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "Ubicación vertical del texto" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "Ubicación horizontal del texto" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "Margen vertical" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "Margen horizontal" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "Transición por defecto" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "Desplazamiento de la ventana" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "Predeterminados varios" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "Circular páginas" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "Expandir elementos cuando se añaden a la lista de reproducción" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "Auditar canciones" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "Vista previa dinámica" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "Mini-vista" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "Avanzado" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "Biblia" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "Elementos especiales que irán primeros en las listas" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "Imágenes" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "Fondos" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "Anuncios de hoy" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "Opciones de recuperación" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "Base de datos de respaldo" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "Restaurar base de datos" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "Búsqueda avanzada" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "Buscar letras" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "Buscar" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "Añadir a la lista de reproducción" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "Seleccionar las canciones a importar" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "Seleccionar todo" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "Desactivar seleccionar todo" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "Desplazamiento de la ventana" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "Arrastre esta ventana hacia la pantalla del proyector" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "Acerca de Lyricue" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "Versión #VERSION#" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" "Escrito por:\n" "Chris Debenham & Clint Turner\n" "Sitio web:\n" "http://www.lyricue.org/" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "Gracias" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "Instalador de Biblias" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" "Seleccione el archivo que contiene la Biblia que desea importar.\n" "Nuevas Biblias pueden ser descargadas de los sitios a continuación.\n" "Haga clic en el botón correspondiente para abrir el sitio en su navegador " "web.\n" "Una vez descargado, vuelva aquí para instalar." #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" "Biblias Sword\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" "Biblias de LyricueDB\n" "http://www.lyricue.org/bibles" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "Seleccionar el archivo a instalar" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "Elija un libro" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "Génesis" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "Éxodo" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "Levítico" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "Números" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "Deuteronomio" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "Josué" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "Jueces" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "Rut" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "1 Samuel" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "2 Samuel" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "1 Reyes" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "2 Reyes" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "1 Crónicas" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "2 Crónicas" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "Esdras" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "Nehemías" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "Ester" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "Job" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "Salmos" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "Proverbios" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "Eclesiastés" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "Cantares" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "Isaías" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "Jeremías" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "Lamentaciones" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "Ezequiel" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "Daniel" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "Oseas" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "Joel" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "Miqueas" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "Hageo" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "Amós" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "Abdías" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "Jonás" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "Nahum" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "Habacuc" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "Sofonías" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "Zacarías" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "Malaquías" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "Cantares" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "Nuevo Testamento" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "Mateo" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "Marcos" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "Lucas" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "Juan" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "Hechos" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "Gálatas" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "1 Tesalonicenses" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "Romanos" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "1 Corintios" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "2 Corintios" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "Efesios" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "Filipenses" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "Colosenses" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "1 Timoteo" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "2 Tesalonicenses" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "2 Timoteo" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "Tito" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "Filemón" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "Hebreos" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "Santiago" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "1 Pedro" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "2 Pedro" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "1 Juan" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "2 Juan" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "3 Juan" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "Judas" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "Apocalipsis" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "Antiguo Testamento" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "Añadir nueva canción" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "Archivo" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "Importar" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "Exportar" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Añadir página" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "Quitar página" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "Previsualizar página" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "Inserte Los Derechos de Autor predeterminado" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "Ayuda" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "El título de la canción" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "El nombre del libro de cantos" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "El número de la canción en el libro de cantos" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "Quién escribió esto" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "Palabras clave" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "Temas tratados en la canción" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Derechos de autor" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "Info de derechos de autor" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "Auditar canción" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "Vista previa" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "Guardar y cerrar" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "Perfiles" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "Gestionar perfiles" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "Elemento de lista de reproducción" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Añadir archivo" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "Página anterior" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "Pág. siguiente" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "Limpiar texto" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "Aplicaciones" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "Pág. anterior" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "Siguiente elemento" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "Pantalla en negro" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "Iniciar el display" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "Buscar en la lista de cantos directamente" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "Limpiar el campo de búsqueda" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "Crear" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "Añadir la canción seleccionada a la lista de reproducción" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "Canciones" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Actual" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "Anterior" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "Vista previa del fondo" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "Añadir a la lista de reproducción" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "Archivos" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "Introduzca el versículo a mostrar" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "<" #: ../data/windowMain.ui.h:64 msgid ">" msgstr ">" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "Añadir este versículo a la lista de reproducción" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "Mostrar ahora" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "Mostrar" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "Auto-mostrar" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "Deslizar texto" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "Rotar texto" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "Aleatorio" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "Al entrar" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "Al salir" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "Dirección de rotación" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "Eje X" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "Eje Y" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "Eje Z" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "Aplicar a selección" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "Aplicar a lista de reproducción" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "Transiciones" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "No hay listas cargadas" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "Previsualizaciones" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "Elija una lista de reproducción" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "Cargar" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "Renombrar" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "Copiar" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "Mover el elemento actual hacia abajo" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "Mover abajo" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "Mover el elemento actual hacia arriba" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "Mover arriba" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "Quitar el elemento actual de la lista de reproducción" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "Quitar" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "Crear sublista" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "0:00/0:00" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "Desenfoque" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "Actualización rápida" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "Guardar" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "Guardar una copia" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "Gestor de perfiles" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "Gestionar los perfiles disponibles" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "Crear perfil" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "Jamás debería leer esto" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "Canción anterior" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "Canción siguiente" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "Pantalla en negro" lyricue-4.0.12/po/af.po0000664000000000000000000007431013053456656011530 0ustar # Afrikaans translation for lyricue # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the lyricue package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: lyricue\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2012-10-19 01:17+0000\n" "Last-Translator: ChrisDebenham \n" "Language-Team: Afrikaans \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: af\n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" #: ../src/lyricue:327 msgid "Could not open " msgstr "" #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "" #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "" #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Kunstenaar" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "" #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "" #: ../src/lyricue:3902 msgid "Select " msgstr "" #: ../src/lyricue:3902 msgid " Colour" msgstr "" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "Beskikbare liedjies" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "" #: ../src/lyricue:5313 msgid "Song No" msgstr "" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "" #: ../src/lyricue:5784 msgid "Copying " msgstr "" #: ../src/lyricue:5826 msgid "Renaming " msgstr "" #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "" #: ../src/lyricue:7598 msgid "OK" msgstr "" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "" #: ../src/lyricue:8635 msgid "Add a user" msgstr "" #: ../src/lyricue:8637 msgid "Enter username" msgstr "" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" #: ../src/lyricue:11275 msgid "Login Error" msgstr "" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "" #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "" #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "" #: ../src/lyricue:12982 msgid "Welcome" msgstr "" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "" #: ../src/lyricue:12994 msgid "Database login" msgstr "" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "" #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "Admin" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "Is jy seker?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Besonderhede" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Kategorie" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "Gevorderde" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "Bybel" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Kopiereg" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "Leë Skerm" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Huidige" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "" #: ../data/windowMain.ui.h:64 msgid ">" msgstr "" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "" lyricue-4.0.12/po/LINGUAS0000664000000000000000000000013513053456656011621 0ustar # please keep this list sorted alphabetically # de en_AU en_GB en_US es fr nl pt_BR pt sv tr lyricue-4.0.12/po/ChangeLog0000664000000000000000000000000013053456656012335 0ustar lyricue-4.0.12/po/pt.po0000664000000000000000000007453313053456656011574 0ustar # Portuguese translation for lyricue # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the lyricue package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: lyricue\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2009-11-06 15:28+0000\n" "Last-Translator: ChrisDebenham \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: pt\n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" #: ../src/lyricue:327 msgid "Could not open " msgstr "Não foi possível abrir " #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" "Não foi possível ler o ficheiro. Tem a certeza que ele existe?\n" "O ficheiro pedido foi " #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" "Não foi possível escrever o ficheiro. Talvez não possua permissões " "suficientes.\n" "Por favor, verifique as permissões de " #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "" #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "" #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "" #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "" #: ../src/lyricue:3902 msgid "Select " msgstr "" #: ../src/lyricue:3902 msgid " Colour" msgstr "" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "" #: ../src/lyricue:5313 msgid "Song No" msgstr "" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "" #: ../src/lyricue:5784 msgid "Copying " msgstr "" #: ../src/lyricue:5826 msgid "Renaming " msgstr "" #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "" #: ../src/lyricue:7598 msgid "OK" msgstr "" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "" #: ../src/lyricue:8635 msgid "Add a user" msgstr "" #: ../src/lyricue:8637 msgid "Enter username" msgstr "" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" #: ../src/lyricue:11275 msgid "Login Error" msgstr "" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "" #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "" #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "" #: ../src/lyricue:12982 msgid "Welcome" msgstr "" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "" #: ../src/lyricue:12994 msgid "Database login" msgstr "" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "" #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "" #: ../data/windowMain.ui.h:64 msgid ">" msgstr "" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "" lyricue-4.0.12/po/en_AU.po0000664000000000000000000010757713053456656012145 0ustar # English (Australia) translation for lyricue # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the lyricue package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: lyricue\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2012-10-19 01:17+0000\n" "Last-Translator: ChrisDebenham \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:27+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: \n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "SQL Error %u: %s" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" "Unable to prepare query.\n" "Has mysql died?" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" "Unable to execute query.\n" "Has mysql died?" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" #: ../src/lyricue:327 msgid "Could not open " msgstr "Could not open " #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "No bible has been selected\n" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "Title" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "Book" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "Song Number" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "/Edit Song" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "/Delete Song" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "/Refresh List" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "/Order - Songbook -> No." #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "/Order - Songbook -> Name." #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "/Add to Playlist" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "/Duplicate Item" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "/Remove from Playlist" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "/Refresh Playlist" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "/Invert Line Display" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "/Loop this playlist item" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "/Associate background" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "/Dis-associate background" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "/Move to sublist/Main" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "/Move to sublist/" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "Are you sure you wish to delete " #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Artist" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "Page " #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "Page" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "Select song to import" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "Are you sure you wish to clear the current playlist?" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "Confirm Clear Playlist" #: ../src/lyricue:3902 msgid "Select " msgstr "Select " #: ../src/lyricue:3902 msgid " Colour" msgstr " Colour" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "Song Contents" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "Available songs" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "Total number of songs available" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "Song Name" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "Song Book" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "Enter filename for export" #: ../src/lyricue:5313 msgid "Song No" msgstr "Song No" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "Create new playlist" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "Name of playlist" #: ../src/lyricue:5784 msgid "Copying " msgstr "Copying " #: ../src/lyricue:5826 msgid "Renaming " msgstr "Renaming " #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "Load Lyricue Display" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "Close Lyricue Display" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "Lyricue" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "Importing presentation" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "Select Category" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "Choose a Directory" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "Cancel" #: ../src/lyricue:7598 msgid "OK" msgstr "OK" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "Create new sublist" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "Name of sublist" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "Choose a Background" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "Set as Default" #: ../src/lyricue:8635 msgid "Add a user" msgstr "Add a user" #: ../src/lyricue:8637 msgid "Enter username" msgstr "Enter username" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "Are you sure you want to exit Lyricue?" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" #: ../src/lyricue:11275 msgid "Login Error" msgstr "Login Error" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "No DVD titles found" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "Unable to open the dvd. There may be no media in the drive" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "Bible installed from " #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "Unable to load from " #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "Install new bibles" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "First-run wizard" #: ../src/lyricue:12982 msgid "Welcome" msgstr "Welcome" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "Location" #: ../src/lyricue:12994 msgid "Database login" msgstr "Database login" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "Image Directories" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "Username/Password accepted" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "Username/Password failed" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "Written by " #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "Password:" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "Username:" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "root" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "Image Directory" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "Backgrounds Directory" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "Folder" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "None selected" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "Centre" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "Top" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "Bottom" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "Enter Login details" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" "Enter the login name and password\n" "of your MySQL Administration user" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "Login name" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "Password" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "Lyricue Administration" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "Username" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "Playlist" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "Edit" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "Delete" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "Display" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "Admin" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "Add user" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "Confirm Delete Song" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "Are you sure?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "Select Databases to backup" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "Songs, Playlists, Usage" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "Images, Backgrounds, Media" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "File to save as" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "Browse" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "Select Directory" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "Select DVD Title" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "Select the DVD title number to play" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "Start time" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "Select time period" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "Lyricue Error" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "label" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Details" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "Select File" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "Choose an Image" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Category" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "Sublist" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "Database actions" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "Move" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "Font Colour" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "Shadow Colour" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "Default" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "Import Data from File" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "Use this dialog to import a songlist" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "Sample songlists" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "Select file to import" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "Set Loop timer" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "Seconds" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "Milliseconds" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "None" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "Fade" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "Preferences" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "Fonts used for projector" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "Footer" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "Main" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "Header" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "Shadow Offset" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "OSD" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "Fonts" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "Settings for projector" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "Text Justification" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "Vertical Text Location" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "Horizontal Text Location" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "Default Transition" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "Window offset" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "Various defaults" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "Loop pages" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "Audit Songs" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "Dynamic Preview" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "Miniview" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "Advanced" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "Bible" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "Special items that will be first in lists" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "Images" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "Backgrounds" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "Today's Announcements" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "Recovery Options" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "Backup Database" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "Restore Database" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "Advanced Search" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "Search Lyrics" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "Search" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "Add to playlist" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "Select songs to import" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "Select All" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "Unselect All" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "Window Offset" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "Drag this window to the projector screen" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "About Lyricue" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "Version #VERSION#" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "Thanks" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "Bible Installer" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "Select file to install" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "Choose a Book" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "Genesis" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "Exodus" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "Leviticus" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "Numbers" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "Deuteronomy" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "Joshua" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "Judges" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "Ruth" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "1 Samuel" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "2 Samuel" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "1 Kings" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "2 Kings" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "1 Chronicles" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "2 Chronicles" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "Ezra" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "Nehemiah" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "Esther" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "Job" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "Psalms" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "Proverbs" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "Ecclesiastes" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "Song of Solomon" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "Isaiah" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "Jeremiah" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "Lamentations" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "Ezekiel" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "Daniel" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "Hosea" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "Joel" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "Micah" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "Haggai" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "Amos" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "Obadiah" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "Jonah" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "Nahum" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "Habakkuk" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "Zephaniah" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "Zechariah" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "Malachi" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "Song of Songs" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "New Testament" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "Matthew" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "Mark" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "Luke" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "John" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "Acts" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "Galatians" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "1 Thessalonians" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "Romans" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "1 Corinthians" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "2 Corinthians" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "Ephesians" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "Philippians" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "Colossians" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "1 Timothy" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "2 Thessalonians" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "2 Timothy" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "Titus" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "Philemon" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "Hebrews" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "James" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "1 Peter" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "2 Peter" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "1 John" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "2 John" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "3 John" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "Jude" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "Revelation" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "Old Testament" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "Add new Song" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "Import" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "Export" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Add Page" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "Remove Page" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "Preview Page" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "The title of the song" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "The songbook name" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "The song number within the book" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "Who wrote this" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "Keywords" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "Topics of song" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Copyright" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "Any copyright information" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "Audit Song" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "Preview" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "Save and Close" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Add File" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "Previous Page" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "Next Page" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "Clear Text" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "Prev. Page" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "Next Point" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "Blank Screen" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "Search the songlist directly" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "Clear Search Field" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "New" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "Add the selected song to the playlist" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "Songs" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Current" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "Previous" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "Background preview" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "Add to Playlist" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "Files" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "Enter Verse to display" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "<" #: ../data/windowMain.ui.h:64 msgid ">" msgstr ">" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "Add these verses to the playlist" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "Show Now" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "Show" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "Autoshow" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "Slide Text" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "Rotate Text" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "In Direction" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "Out Direction" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "Rotate Direction" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "X-Axis" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "Y-Axis" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "Z-Axis" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "Apply to Selected" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "Apply to Playlist" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "Transitions" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "No Playlist loaded" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "Choose Your Playlist" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "Load" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "Rename" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "Move the current item down" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "Move Down" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "Move the current item up" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "Move Up" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "Remove the current item from the playlist" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "Remove" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "Add Sublist" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "Blur" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "Quick Update" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "Save" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "You should never read this" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "Previous Song" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "Next Song" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "Clear Screen" lyricue-4.0.12/po/POTFILES.in0000664000000000000000000000246013053456656012354 0ustar # List of source files containing translatable strings. src/database.c src/lyricue src/lyricue_display.c src/display.c [type: gettext/glade] data/assistantFirstRun.ui [type: gettext/glade] data/dialogAdminLogin.ui [type: gettext/glade] data/dialogAdmin.ui [type: gettext/glade] data/dialogColour.ui [type: gettext/glade] data/dialogConfirm.ui [type: gettext/glade] data/dialogDatabase.ui [type: gettext/glade] data/dialogDirChooser.ui [type: gettext/glade] data/dialogDvd.ui [type: gettext/glade] data/dialogError.ui [type: gettext/glade] data/dialogFileChooser.ui [type: gettext/glade] data/dialogFont.ui [type: gettext/glade] data/dialogImage.ui [type: gettext/glade] data/dialogImportData.ui [type: gettext/glade] data/dialogLoop.ui [type: gettext/glade] data/dialogPrefs.ui [type: gettext/glade] data/dialogPromptEntry.ui [type: gettext/glade] data/dialogSearch.ui [type: gettext/glade] data/dialogSelectCategory.ui [type: gettext/glade] data/dialogSelectSongs.ui [type: gettext/glade] data/dialogWindowOffset.ui [type: gettext/glade] data/windowAbout.ui [type: gettext/glade] data/windowBibleManager.ui [type: gettext/glade] data/windowBook.ui [type: gettext/glade] data/windowEditSong.ui [type: gettext/glade] data/windowMain.ui [type: gettext/glade] data/windowProfileManager.ui [type: gettext/glade] data/windowTray.ui lyricue-4.0.12/po/id.po0000664000000000000000000007432313053456656011542 0ustar # Indonesian translation for lyricue # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the lyricue package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: lyricue\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2012-08-25 13:04+0000\n" "Last-Translator: Dirgita \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" "Tidak dapat menyiapkan kuiri.\n" "Apakah mysql belum aktif?" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" "Tidak dapat mengeksekusi kuiri.\n" "Apakah mysql belum aktif?" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" #: ../src/lyricue:327 msgid "Could not open " msgstr "" #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "" #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "" #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "" #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "" #: ../src/lyricue:3902 msgid "Select " msgstr "" #: ../src/lyricue:3902 msgid " Colour" msgstr "" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "" #: ../src/lyricue:5313 msgid "Song No" msgstr "" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "" #: ../src/lyricue:5784 msgid "Copying " msgstr "" #: ../src/lyricue:5826 msgid "Renaming " msgstr "" #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "" #: ../src/lyricue:7598 msgid "OK" msgstr "" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "" #: ../src/lyricue:8635 msgid "Add a user" msgstr "" #: ../src/lyricue:8637 msgid "Enter username" msgstr "" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" #: ../src/lyricue:11275 msgid "Login Error" msgstr "" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "" #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "" #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "" #: ../src/lyricue:12982 msgid "Welcome" msgstr "" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "" #: ../src/lyricue:12994 msgid "Database login" msgstr "" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "" #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "" #: ../data/windowMain.ui.h:64 msgid ">" msgstr "" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "" lyricue-4.0.12/po/nl.po0000664000000000000000000011231313053456656011547 0ustar msgid "" msgstr "" "Project-Id-Version: Lyricue 2.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2012-10-19 01:19+0000\n" "Last-Translator: ChrisDebenham \n" "Language-Team: nl \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" "X-Poedit-Country: NETHERLANDS\n" "Language: \n" "X-Poedit-Language: Dutch\n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "SQL Fout %u: %s" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "De liederen database kon niet worden geopend.\n" "Controleer of Lyricue correct is geïnstalleerd en de MySQL server draait" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" "De Bijbel database kon niet worden geopend.\n" "Controleer of Lyricue correct is geïnstalleerd en de gebruikteBijbel " "database bestaat.\n" "De gebruikte database is: " #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "De media database kon niet worden geopend.\n" "Controleer of Lyricue correct is geïnstalleerd en de MySQL server draait" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" "Deze query kon niet worden gemaakt.\n" "Is de MySQL server gestart?" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" "Deze query kon niet worden uitgevoerd\n" "Is de MySQL server gestart?" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" "Het netwerk kon niet worden gevonden.\n" "Controleer of Lyricue_server al ergens anders is gestart." #: ../src/lyricue:327 msgid "Could not open " msgstr "Het volgende kon niet geopend worden: " #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" "De file kon niet geopend worden. Bestaat deze file nog?\n" "De gevraagde filenaam is: " #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" "Er kon niet naar de file worden geschreven, het kan zijn dat u geen recht " "heeft om naar de file te schrijven.\n" "Controleert u de file rechten " #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "Er is geen bijbel geselecteerd\n" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "Titel" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "Boek" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "Liednummer" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "/Lied bewerken" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "/Lied verwijderen" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "/Lijst verversen" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "/Sorteren - Liedbundel -> No." #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "/Sorteren - Liedbundel -> Naam." #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "/Toevoegen aan afspeellijst" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "/Item dupliceren" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "/Item van de afspeellijst verwijderen" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "/Afspeellijst vernieuwen" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "/Eerste of laatste regel tonen" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "/Item doorlopend vertonen" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "/Koppeling met achtergrond aanbrengen" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "/Koppeling met achtergrond verwijderen" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "/Verplaats naar de sublijst/Hoofdlijst" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "/Verplaats naar de sublijst/" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "Weet u zeker dat u het volgende wilt verwijderen " #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Schrijver" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "Pagina " #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "Pagina" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "Select song to import" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "Weet u zeker dat u deze afspeellijst wilt wissen?" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "Wissen van afspeellijst bevestigen" #: ../src/lyricue:3902 msgid "Select " msgstr "Selecteren " #: ../src/lyricue:3902 msgid " Colour" msgstr " Kleur" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "De inhoud van het lied" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "Beschikbare liederen" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "Total number of songs available" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "Titel" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "Liedbundel" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "Enter filename for export" #: ../src/lyricue:5313 msgid "Song No" msgstr "Liednummer" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "Maak een nieuwe afspeellijst" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "Naam van de afspeellijst" #: ../src/lyricue:5784 msgid "Copying " msgstr "Copieren " #: ../src/lyricue:5826 msgid "Renaming " msgstr "Hernoemen " #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "Start Lyricue Display" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "Stop Lyricue Display" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "Lyricue" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "Importeren van een presentatie" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "Selecteer Categorie" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "Kies een directory" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "Annuleren" #: ../src/lyricue:7598 msgid "OK" msgstr "OK" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "Maak een nieuwe sublijst" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "Naam van de sublijst" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "Achtergrond selecteren" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "Als standaard instellen" #: ../src/lyricue:8635 msgid "Add a user" msgstr "Gebruiker toevoegen" #: ../src/lyricue:8637 msgid "Enter username" msgstr "Vul Gebruikersnaam in" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "Weet u zeker dat u Lyricue afsluit?" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" "Het was niet mogelijk in te loggen in de database als admin, misschien is de " "database uitgeschakeld.\n" "Vul opnieuw de database admin login en probeer het opnieuw" #: ../src/lyricue:11275 msgid "Login Error" msgstr "Login fout" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "Geen DVD-titels gevonden" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "" "Niet in staat de DVD te openen. Mogelijk is er geen schijf in het DVD-" "station." #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "Bijbel geïnstalleerd van " #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "Niet mogelijk te laden van " #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "Installeer nieuwe bijbels" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "Initialisatie wizard" #: ../src/lyricue:12982 msgid "Welcome" msgstr "Welkom" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "Locatie" #: ../src/lyricue:12994 msgid "Database login" msgstr "Database login" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "Mappen met afbeeldingen" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "Gebruikersnaam/Wachtwoord geaccepteerd" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "Gebruikersnaam/Wachtwoord niet geaccepteerd" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "Geschreven door " #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" "Omdat dit de eerste keer is dat u Lyricue start lopen we eerst door een " "aantal initiële instellingen" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "Wachtwoord:" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "Gebruikersnaam:" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "root" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" "Lyricue gebruikt MySQL om de gegevens in op te slaan.\n" "Om MySQL te gebruiken zal ik een speciale gebruiker aanmaken 'lyric'\n" "Om dit te kunnen is het MySQL root wachtwoord noodzakelijk.\n" "Noot: Dit wachtwoord zal niet elders worden opgeslagen." #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" "Lyricue moet ergens de afbeeldingen en achtergronden van laden. De mappen " "Afbeeldingen en Achtergronden kunnen dezelfde zijn maar u kunt ook aparte " "mappen instellen.\n" "Selecteer de juiste map voor Afbeeldingen en Achtergronden." #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "Map met afbeeldingen" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "Map met achtergronden" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "Map" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "Niets geselecteert" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "Midden" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "Boven" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "Onderaan" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "Voer login gegevens in" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" "Voer de loginnaam en wachtwoord in\n" "van uw MySQL Administrator gebruiker" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "Gebruikersnaam" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "Wachtwoord" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "Lyricue Beheer" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "Gebruikersnaam" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "Afspeellijst" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "Bewerken" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "Verwijderen" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "Tonen" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "Admin" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "Gebruiker toevoegen" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "Verwijderen van een lied bevestigen" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "Weet u het zeker?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "Selecteer de databases waarvan een reservekopie gemaakt moet worden" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "Liederen, afspeellijsten, gebruik" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "Afbeeldingen, achtergronden, Media" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "Bestand op te slaan als" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "Bladeren" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "Map selecteren" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "Selecteer een DVD-titel" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "Selecteer de DVD-titelnummer om die af te spelen." #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "Starttijd" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "Selecteer een tijdperiode" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "Lyricue Fout" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "label" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Details" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "Bestand selecteren" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "Selecteer een afbeelding" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Categorie" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "Sublijst" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "Database acties" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "Verplaats" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "Tekstkleur" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "Schaduwkleur" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "Standaardinstelling" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "Data van bestand importeren" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "Gebruik deze dialoog om de liederenlijst te importeren" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "Voorbeeld liederenlijst." #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "Bestand selecteren voor import" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "Doorlooptijd instellen" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "Seconden" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "Milliseconden" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "Geen" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "Vervagen" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "Voorkeuren" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "De lettertypen die voor de projectie gebruikt worden" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "Voettekst" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "Hoofd" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "Koptekst" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "Schaduw offset" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "OSD" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "Lettertypen" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "Instellingen voor de projector" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "Tekst Uitgelijnd" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "Verticale Text Positie" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "Horizontale Text Positie" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "Verticale marge" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "Horizontale marge" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "Standaardovergang" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "Vensterplaatsing" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "Diverse instellingen" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "Pagina's doorlopend tonen" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "Liederen registreren" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "Voorbeeld (dynamisch)" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "Miniweergave van het scherm" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "Geavanceerd" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "Bijbel" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "Speciale items die eerst in lijsten getoond worden" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "Afbeeldingen" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "Achtergronden" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "Mededelingen van vandaag" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "Herstel opties" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "Reservekopie van de database maken" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "Database terugplaatsen" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "Geavanceerd zoeken" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "Doorzoek het lied op" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "Zoeken" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "Toevoegen aan afspeellijst" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "Liederen voor import selecteren" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "Alles selecteren" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "Alles deselecteren" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "Vensterplaatsing" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "Verplaats dit venster naar het projectorscherm" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "Over Lyricue" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "Versie #VERSION#" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" "Geschreven door:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "Bedankt" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "Bijbel-Installatie" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" "Selecteer de file met de Bijbel die u wilt importeren.\n" "Nieuwe Bijbels kunnen worden gedownload van de onderstaande sites.\n" "Klik op de knop van de site om deze in uw browser te openenen.\n" "Als de Bijbel is gedownload komt u hier terug om de Bijbel te installeren." #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" "Sword Bijbels\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" "LyricueDB bijbels\n" "http://www.lyricue.org/bibles" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "Bestand voor installatie selecteren" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "Selecteer een Boek" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "Genesis" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "Exodus" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "Leviticus" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "Numeri" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "Deuteronomium" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "Jozua" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "Rechters" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "Ruth" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "1 Samuël" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "2 Samuël" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "1 Koningen" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "2 Koningen" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "1 Kronieken" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "2 Kronieken" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "Ezra" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "Nehemia" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "Ester" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "Job" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "Psalmen" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "Spreuken" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "Prediker" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "Hooglied" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "Jesaja" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "Jeremia" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "Klaagliederen" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "Ezechiël" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "Daniël" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "Hosea" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "Joël" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "Micha" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "Haggai" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "Amos" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "Obadja" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "Jona" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "Nahum" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "Habakuk" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "Sefanja" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "Zacharia" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "Maleachi" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "Hooglied" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "Nieuwe Testament" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "Matteüs" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "Marcus" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "Lucas" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "Johannes" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "Handelingen" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "Galaten" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "1 Tessalonicenzen" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "Romeinen" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "1 Korintiërs" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "2 Korintiërs" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "Efeziërs" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "Filippenzen" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "Kolossenzen" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "1 Timoteüs" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "2 Tessalonicenzen" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "2 Timoteüs" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "Titus" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "Filemon" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "Hebreeën" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "Jakobus" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "1 Petrus" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "2 Petrus" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "1 Johannes" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "2 Johannes" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "3 Johannes" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "Judas" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "Openbaring" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "Oude Testament" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "Nieuw lied toevoegen" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "Importeren" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "Exporteren" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Pagina toevoegen" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "Pagina verwijderen" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "Paginavoorbeeld" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "De titel van het lied" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "De naam van de liedbundel" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "Het nummer van het lied in de desbetreffende liedbundel" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "De naam van de tekstschrijver of componist" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "Trefwoorden" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "De onderwerp(en) of thema('s) van het lied" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Copyright" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "De copyrightgegevens van het lied" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "Lied registreren" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "Voorbeeld" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "Opslaan en sluiten" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Bestand toevoegen" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "Vorige pagina" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "Volgende pagina" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "Tekst wissen" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "Vorige pagina" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "Volgende punt" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "Scherm leegmaken" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "Start Display" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "Zoek direct in de liederenlijst" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "Zoekveld wissen" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "Nieuw" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "Voeg het geselecteerde lied aan de afspeellijst toe" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "Liederen" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Huidig" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "Vorige" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "Achtergrond voorvertooning" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "Toevoegen aan afspeellijst" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "Bestanden" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "Voer het vers dat getoond moet worden in" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "<" #: ../data/windowMain.ui.h:64 msgid ">" msgstr ">" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "Voeg deze verzen aan de afspeellijst toe" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "Nu laten zien" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "Tonen" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "Direct tonen" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "Text schuiven" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "Tekst Roteren" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "Richting In" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "Richting Uit" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "Rotatie As" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "X-as" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "Y-as" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "Z-as" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "Op selectie toepassen" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "Toepassen op afspeellijst" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "Overgangen" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "Geen afspeellijst geladen" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "Selecteer een afspeellijst" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "Laden" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "Hernoemen" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "Verplaats het huidige item omlaag" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "Omlaag" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "Verplaats het huidige item omhoog" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "Omhoog" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "Verwijder het huidige item van de afspeellijst" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "Verwijderen" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "Sublijst toevoegen" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "Vervagen" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "Snel bijwerken" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "Opslaan" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "Dit behoort u nooit te kunnen lezen" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "Vorige lied" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "Volgend lied" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "Scherm wissen" lyricue-4.0.12/po/sv.po0000664000000000000000000010472313053456656011574 0ustar msgid "" msgstr "" "Project-Id-Version: lyricue 2.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2012-10-19 01:17+0000\n" "Last-Translator: ChrisDebenham \n" "Language-Team: sv \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" "X-Poedit-Country: SWEDEN\n" "Language: \n" "X-Poedit-Language: Swedish\n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "Tyvärr kan jag inte öppna textdatabasen.\n" "Kontrollera att Lyricue är korrekt installerat och att MySQL kör." #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" "Tyvärr kan jag inte öppna bibeldatabasen.\n" "Kontrollera att Lyricue är korrekt installerat och att vald bibeldatabas " "existerar.\n" "Den efterfrågade databasen var " #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "Tyvärr kan jag inte öppna mediadatabasen.\n" "Kontrollera att Lyricue är korrekt installerat och att MySQL kör." #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" "Kan inte förbereda databasfrågan.\n" " Har MySQL dött?" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" "Kan inte utföra databasfrågan.\n" " Har MySQL dött?" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" "Tyvärr kunde jag inte lyssna på nätverket.\n" "Kontrollera att jag inte redan kör." #: ../src/lyricue:327 msgid "Could not open " msgstr "Kunde inte öppna " #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" "Kunde inte läsa filen, är du säker på att den finns?.\n" "Den sökta filen heter " #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" "Kunde inte skriva till filen, du har kanske inte tillräckliga rättigheter.\n" "Kontrollera filrättigheterna för " #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "Titel" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "Bok" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "Nummer" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "/Redigera Sång" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "/Radera Sång" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "/Uppdatera lista" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "/Sortera - Sångbook -> Nummer" #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "/Sortera - Sångbok -> Namn" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "/Lägg till i spellista" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "/Duplicera objekt" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "/Ta bort från spellista" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "/Uppdatera spellista" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "/Inverterad radvisning" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "/Loopa detta objekt" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "/Associera bakgrund" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "/De-associera bakgrund" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "/Flytta till underlista/Main" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "/Flytta till underlista/" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "Är du säker att du vill ta bort " #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Artist" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "Sida " #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "Sida" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "Är du säker att du vill rensa spellistan?" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "Bekräfta rensa spellista" #: ../src/lyricue:3902 msgid "Select " msgstr "Välj " #: ../src/lyricue:3902 msgid " Colour" msgstr " Färg" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "Sångtext" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "Tillgängliga sånger" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "Sångnamn" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "Sångbok" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "" #: ../src/lyricue:5313 msgid "Song No" msgstr "Sång nr" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "" #: ../src/lyricue:5784 msgid "Copying " msgstr "" #: ../src/lyricue:5826 msgid "Renaming " msgstr "Byter namn " #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "Lyricue" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "Välj kategori" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "Välj en mapp" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "Avbryt" #: ../src/lyricue:7598 msgid "OK" msgstr "OK" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "Skapa ny undergrupp" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "Välj en bakgrund" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "Sätt som standard" #: ../src/lyricue:8635 msgid "Add a user" msgstr "Lägg till en användare" #: ../src/lyricue:8637 msgid "Enter username" msgstr "Ange användarnamn" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" "Kan inte logga in till databasen som administratör, kanske databasen är " "nere.\n" "Mata in din databasinloggning igen." #: ../src/lyricue:11275 msgid "Login Error" msgstr "Loginfel" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "" #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "" #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "" #: ../src/lyricue:12982 msgid "Welcome" msgstr "Välkommen" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "" #: ../src/lyricue:12994 msgid "Database login" msgstr "Databaslogin" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "Användarnamn/lösenord misslyckades" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "Skriven av " #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "Lösenord:" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "Användarnamn:" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "root" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "Bildmapp" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "Bakgrundsmapp" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "Mapp" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "Inga markerade" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "Överst" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "Nederst" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "Ge inloggningsdetaljer" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" "Ange användarnamn och lösenord\n" "för MySQL-Administratören" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "Loginnamn" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "Lösenord" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "Lyricue administration" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "Användarnamn" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "Spellista" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "Redigera" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "Ta bort" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "Visa" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "Administratör" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "Lägg till användare" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "Bekräfta borttagning av sång" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "Är du säker?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "Välj databas att säkerhetskopiera" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "Sånger, Spellistor, Användning" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "Bilder, Bakgrunder, Media" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "Spara som fil" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "Bläddra" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "Välj mapp" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "Lyricue fel" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Detaljer" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "Välj fil" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "Välj en bild" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Kategori" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "Underlista" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "Flytta" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "Teckenfärg" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "Skuggfärg" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "Importera data från fil" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "Välj fil att importera" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "Sätt loop-tid" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "Sekunder" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "MIllisekunder" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "Ingen" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "Inställningar" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "Fonter använda för projektorn" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "Fotnot" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "Normal" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "Sidhuvud" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "Skuggoffset" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "Fonter" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "Projektorinställningar" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "Diverse inställningar" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "Loopa sidor" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "Logga sånger" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "Dynamisk förhandsvisning" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "Minivy" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "Avancerad" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "Bibel" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "Specialobjekt som ska komma först i listor" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "Bilder" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "Bakgrunder" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "Dagens meddelande" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "Databasmöjligheter" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "Säkerhetskopiera databasen" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "Återställ från säkerhetskopia" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "Avancerad sökning" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "Söktext" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "Sök" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "Lägg till i spellistan" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "Välj låtar att importera" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "Markera alla" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "Avmarkera alla" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "Om Lyricue" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "Tackar!" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "Välj fil att installera" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "Välj bok" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "Första Moseboken" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "Andra Moseboken" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "Tredje Moseboken" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "Fjärde Moseboken" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "Femte Moseboken" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "Josua" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "Domarboken" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "Rut" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "Första Samuelsboken" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "Andra Samuelsboken" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "Första Kungaboken" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "Andra Kungaboken" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "Första Krönikeboken" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "Andra Krönikeboken" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "Esra" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "Nehemja" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "Ester" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "Job" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "Psaltaren" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "Ordspråksboken" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "Predikaren" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "Höga Visan" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "Jesaja" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "Jeremia" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "Klagovisorna" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "Hesekiel" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "Daniel" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "Hosea" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "Joel" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "Mika" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "Haggai" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "Amos" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "Obadja" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "Jona" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "Nahum" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "Habackuk" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "Sefanja" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "Sakarja" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "Malaki" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "Nya Testamentet" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "Matteusevangeliet" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "Markusevangeliet" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "Lukasevangeliet" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "Johannesevangeliet" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "Apostlagärningarna" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "Galaterbrevet" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "Första Thessalonikerbrevet" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "Romarbrevet" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "Första Korinthierbrevet" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "Andra Korinthierbrevet" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "Efesierbrevet" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "Filipperbrevet" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "Kolosserbrevet" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "Första Timotheosbrevet" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "Andra Thessalonikerbrevet" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "Andrea Timotheosbrevet" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "Titusbrevet" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "Filemonbrevet" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "Hebreerbrevet" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "Jakobsbrevet" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "Första Petrusbrevet" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "Andra Petrusbrevet" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "Första Johannesbrevet" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "Andra Johannesbrevet" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "Tredje Johannesbrevet" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "Judasbrevet" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "Uppenbarelseboken" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "Gamla testamentet" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "Lägg till sång" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "Import" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "Export" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Lägg till sida" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "Ta bort sida" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "Förhandsvisa sida" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "Sångens titel" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "Sångbokens namn" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "Sångens nummer i sångboken" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "Vem skrev detta" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "Nyckelord" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "Sångens handlar om" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Copyright" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "Copyrightinformation" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "Logga sång" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "Förhandsvisning" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "Spara och stäng" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Lägg till fil" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "Föregående sida" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "Nästa sida" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "Rensa text" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "Föregående sida" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "Nästa punkt" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "Töm skärm" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "Sök direkt i sånglistan" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "Rensa sökfält" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "Ny" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "Lägg till vald sång till spellistan" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "Låtar" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Nuvarande" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "Föregående" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "Lägg till i spellistan" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "Filer" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "Välj vers att visa" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "<" #: ../data/windowMain.ui.h:64 msgid ">" msgstr ">" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "Lägg till valda verser till spellistan" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "Visa nu" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "Visa" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "Automatisk visning" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "Dra text" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "Riktning in" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "Riktning ut" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "Ingen spellista laddad" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "Välj en spellista" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "Ladda" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "Byt namn" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "Flytta valt objekt neråt i listan" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "Flytta ner" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "Flytta valt objekt neråt i listan" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "Flytta upp" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "Ta bort objektet från spellistan" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "Ta bort" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "Lägg till lista" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "Snabbuppdatering" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "Spara" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "Du ska aldrig läsa detta" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "Föregående sång" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "Nästa sång" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "Rensa skärm" lyricue-4.0.12/po/de.po0000664000000000000000000011320613053456656011530 0ustar # German translation of lyricue # Copyright (C) 2005 Chris Debenham # This file is distributed under the same license as the lyricue package. # Chris Debenham , 2004. # Tobias Gehrig # Martin Wagner # Wolfgang Köhler # msgid "" msgstr "" "Project-Id-Version: lyricue 2.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2012-12-22 11:30+0000\n" "Last-Translator: Dennis Baudys \n" "Language-Team: de \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: \n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "SQL-Fehler %u: %s" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "Es tut mir leid, aber ich konnte die Liedtext-Datenbank nicht öffnen.\n" "Bitte überprüfen sie, ob Lyricue korrekt installiert ist und ob MySQL läuft." #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" "Es tut mir leid, aber ich konnte die Bibel-Datenbank nicht öffnen.\n" "Bitte überprüfen sie, ob Lyricue korrekt installiert ist und ob die aktuelle " "Bibel-Datenbank existiert.\n" "Die angeforderte Datenbank heißt " #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "Es tut mir leid, aber ich konnte die Medien-Datenbank nicht öffnen.\n" "Bitte überprüfen sie, ob Lyricue korrekt installiert ist und ob MySQL läuft." #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" "Anfrage kann nicht vorbereitet werden.\n" "Ist mysql gestorben?" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" "Anfrage kann nicht ausgeführt werden.\n" "Ist mysql gestorben?" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" "Es tut mir leid, ich konnte nicht auf dem Netzwerk lauschen.\n" "Bitte sorgen Sie dafür, dass ich nicht bereits laufe" #: ../src/lyricue:327 msgid "Could not open " msgstr "Konnte nicht öffnen " #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" "Die Datei kann nicht gelesen werden; sind Sie sicher, dass sie existiert?\n" "Die angeforderte Datei heißt " #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" "Auf die Datei kann nicht geschrieben werden, Sie haben wahrscheinlich nicht " "genügend Rechte.\n" "Bitte überprüfen sie die Rechte für " #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "Keine Datenbank wurde ausgewäht\n" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "Titel" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "Buch" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "Liednummer" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "/Lied bearbeiten" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "/Lösche Lied" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "/Liste neu laden" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "/Reihenfolge - Liederbuch -> Nr." #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "/Reihenfolge - Liederbuch -> Name." #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "/Auf die Playliste setzen" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "/Eintrag duplizieren" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "/Aus Playliste entfernen" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "/Playliste neu laden" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "/Zeilenanzeige invertieren" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "/Diesen Playlisteneintrag loopen" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "/Hintergrund zuordnen" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "/Hintergrundzuordnung entfernen" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "/In Unterliste verschieben/Main" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "/In Unterliste verschieben/" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "Sind sie sicher, dass sie folgendes Lied löschen wollen? " #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Autor" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "Seite " #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "Seite" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "Lied zum Importieren wählen" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "Sind sie sicher, dass sie die aktuelle Playliste leeren wollen?" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "Playliste leeren bestätigen" #: ../src/lyricue:3902 msgid "Select " msgstr "Wähle " #: ../src/lyricue:3902 msgid " Colour" msgstr " Farbe" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "Liedinhalt" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "Liederliste" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "Gesamtzahl verfügbarer Lieder" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "Liedname" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "Liederbuch" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "Dateinamen für den Export eingeben" #: ../src/lyricue:5313 msgid "Song No" msgstr "Liederbuch" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "Neue Playliste erstellen" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "Name der playliste" #: ../src/lyricue:5784 msgid "Copying " msgstr "Kopiere " #: ../src/lyricue:5826 msgid "Renaming " msgstr "Umbenennen " #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "Lyricue Display laden" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "Lyricue Display schließen" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "Lyricue" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "Importiere Präsentation" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "Kategorie auswählen" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "Verzeichnis auswählen" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "Abbrechen" #: ../src/lyricue:7598 msgid "OK" msgstr "OK" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "Neue Unterliste anlegen" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "Name der Unterliste" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "Hintergrund auswählen" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "Als Standard setzen" #: ../src/lyricue:8635 msgid "Add a user" msgstr "Benutzer hinzufügen" #: ../src/lyricue:8637 msgid "Enter username" msgstr "Benutzernamen eingeben" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "Wollen Sie wirklich Lyricue beenden?" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" "Anmeldung bei der Datenbank als Admin nicht erfolgreich, vielleicht ist die " "Datenbank abgestürzt.\n" "Bitte Anmeldedaten erneut eingeben und nochmal versuchen" #: ../src/lyricue:11275 msgid "Login Error" msgstr "Login-Fehler" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "keine DVD-Titel gefunden" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "Konnte die DVD nicht öffnen. Vielleicht ist kein Medium im Laufwerk." #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "Bibel installiert von " #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "Konnte nicht laden von " #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "Neue Bibeln installieren" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "Installationsassistent" #: ../src/lyricue:12982 msgid "Welcome" msgstr "Willkommen" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "Pfad" #: ../src/lyricue:12994 msgid "Database login" msgstr "Login zur Datenbank" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "Bildverzeichnisse" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "Benutzername/Kennwort angenommen" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "Benutzername/Kennwort fehlgeschlagen" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "Geschrieben von " #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" "Da Sie Lyricue zum ersten mal starten, werden wir Sie jetzt durch ein paar " "Anfangseinstellungen führen" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "Kennwort:" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "Benutzername:" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "root" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" "Lyricue benutzt MySQL, um seine Daten aufzubewahren.\n" "Um Zugriff auf MySQL zu haben, werde ich jetzt einen Nutzer namens 'lyric' " "anlegen\n" "Um das zu tun, brauche ich Ihr MySQL root-Benutzerkennwort.\n" "Beachten Sie: Dieses Kennwort ist nirgendwo gespeichert" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" "Lyricue braucht einen Ort, von dem es seine Bilder und Hintergründe laden " "kann.\n" "Die Verzeichnisse für die Bilder und die Hintergründe können entweder " "dieselben sein, oder Sie können sie getrennt aufbewahren.\n" "Bitte wählen Sie für beide ein geeignetes Verzeichnis aus." #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "Bildverzeichnis" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "Hintergrundverzeichnis" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "Ordner" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "Keine ausgewählt" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "Links" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "Mitte" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "Rechts" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "Oben" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "Unten" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "Anmeldedetails eingeben" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" "Geben Sie Name und Kennwort\n" "Ihres MySQL- Administration-Benutzers ein" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "Loginname" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "Kennwort" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "Administration von Lyricue" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "Benutzername" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "Playliste" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "Bearbeiten" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "Löschen" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "Anzeige" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "Administrator" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "Benutzer hinzufügen" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "Bestätige Lied löschen" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "Sind Sie sicher?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "Zu sichernde Datenbanken auswählen" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "Lieder, Playlisten, Benutzung" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "Bilder, Hintergründe, Medien" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "Datei speichern unter" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "Durchsuchen" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "Verzeichnis wählen" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "Endzeit" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "Dauer" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "DVD-Titel auswählen" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "Wählen Sie die DVD-Titelnummer zum abspielen" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "Startzeit" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "Zeitspanne auswählen" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "Lyricue Fehler" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "Beschriftung" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Details" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "Datei auswählen" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "Bild auswählen" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Kategorie" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "Unterliste" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "Datenbank-Aktionen" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "Verschieben" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "Schriftfarbe" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "Schattenfarbe" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "Standard" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "Daten von Datei importieren" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "Diesen Dialog benutzen, um eine Liederliste zu importieren" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "Beispiel-Liederlisten" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "Datei zum Importieren auswählen" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "Loop Timer setzen" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "Sekunden" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "Millisekunden" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "Kein" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "Übergang" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "Einstellungen" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "Schrifteinstellungen für den Beamer" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "Fußzeile" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "Haupteinstellungen" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "Kopfzeile" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "Schatten-Offset" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "OSD" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "Schrift" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "Beamer-Einstellungen" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "Textausrichtung" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "Vertikale Textposition" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "Horizontale Textposition" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "Vertikaler Abstand" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "Horizontaler Abstand" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "Standard-Übergang" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "Fenster angleichen" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "Verschiedene Standardwerte" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "Seiten loopen" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "Elemente beim Hinzufügen zur Wiedergabeliste aufklappen" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "Liedaufrufe protokollieren" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "Dynamische Vorschau" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "Miniansicht" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "Erweitert" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "Bibel" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "Besondere Elemente, die als erste in Listen erscheinen" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "Bilder" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "Hintergründe" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "Heutige Bekanntmachungen" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "Optionen zur Datenwiederherstellung" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "Sicherung der Datenbank" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "Datenbank wiederherstellen" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "Erweiterte Suche" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "Texte durchsuchen" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "Suchen" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "Auf die Playliste" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "Lieder zum Importieren auswählen" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "Alles markieren" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "Keine auswählen" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "Fenster angleichen" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "Dieses Fenster auf den Projektor verschieben" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "Über Lyricue" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "Version #VERSION#" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" "Geschrieben von:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "Danke" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "Bibel-Installationsassistent" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" "Wählen Sie die Datei aus, die die Bibel enthält, die Sie importieren " "möchten\n" "Neue Bibeln können von den unten angegebenen Websites heruntergeladen " "werden.\n" "Klicken Sie auf den entsprechenden Button, um diese Website in ihrem Browser " "zu laden.\n" "Kommen Sie bitte hierher wieder zurück, nachdem der Download abgeschlossen " "ist." #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" "Sword-Bibeln\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" "LyricueDB-Bibeln\n" "http://www.lyricue.org/bibles" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "Datei zum Installieren auswählen" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "Wähle ein Buch aus" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "1. Mose" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "2. Mose" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "3. Mose" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "4. Mose" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "5. Mose" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "Josua" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "Richter" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "Rut" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "1. Samuel" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "2. Samuel" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "1. Könige" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "2. Könige" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "1. Chronik" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "2. Chronik" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "Esra" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "Nehemia" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "Ester" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "Hiob" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "Psalmen" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "Sprüche" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "Prediger" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "Hoheslied" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "Jesaja" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "Jeremia" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "Klagelieder" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "Hesekiel" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "Daniel" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "Hosea" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "Joel" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "Micha" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "Haggai" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "Amos" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "Obadja" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "Jona" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "Nahum" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "Habakuk" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "Zefanja" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "Sacharja" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "Maleachi" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "Hoheslied" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "Neues Testament" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "Matthäus" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "Markus" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "Lukas" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "Johannes" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "Apostelgeschichte" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "Galater" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "1. Thessalonicher" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "Römer" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "1. Korinther" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "2. Korinther" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "Epheser" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "Philipper" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "Kolosser" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "1. Timotheus" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "2. Thessalonicher" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "2. Timotheus" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "Titus" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "Philemon" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "Hebräer" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "Jakobus" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "1. Petrus" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "2. Petrus" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "1. Johannes" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "2. Johannes" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "3. Johannes" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "Judas" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "Offenbarung" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "Altes Testament" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "Neues Lied hinzufügen" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "Datei" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "Importieren" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "Exportieren" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Seite hinzufügen" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "Seite entfernen" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "Seitenvorschau" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "Copyright-Vorlage einfügen" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "Hilfe" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "Der Titel des Liedes" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "Der Liederbuchname" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "Die Liednummer im Buch" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "Wer hat das geschrieben" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "Schlüsselwörter" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "Themen des Liedes" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Copyright" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "Jegliche Copyright-Information" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "Liedaufruf protokollieren" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "Vorschau" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "Speichern und Schließen" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "Element in der Wiedergabeliste" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Datei hinzufügen" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "Vorherige Seite" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "Nächste Seite" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "Text löschen" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "Anwendungen" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "Vor. Seite" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "Nächstes Element" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "Bildschirm löschen" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "Anzeige beginnen" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "Liederliste durchsuchen" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "Suchfeld leeren" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "Neu" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "Das ausgewählte Lied zur Playliste hinzufügen" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "Lieder" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Aktuell" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "Vorherige" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "Hintergrund-Vorschau" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "Auf die Playliste" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "Dateien" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "Anzuzeigenden Vers eingeben" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "<" #: ../data/windowMain.ui.h:64 msgid ">" msgstr ">" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "Diese Verse zur Playliste hinzufügen" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "Jetzt Anzeigen" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "Anzeigen" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "Auto-Anzeigen" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "Gleittext" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "Text rotieren" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "Zufällig" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "In Richtung" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "Out Richtung" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "Rotationsrichtung" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "X-Achse" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "Y-Achse" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "Z-Achse" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "Anwenden auf Auswahl" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "Anwenden auf Playliste" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "Übergänge" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "Keine Playliste geladen" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "Playliste auswählen" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "Laden" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "Umbenennen" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "Kopieren" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "Das aktuelle Element nach unten schieben" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "Nach unten schieben" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "Das aktuelle Element nach oben schieben" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "Nach oben schieben" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "Das aktuelle Element aus der Playliste entfernen" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "Entfernen" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "Neue Unterliste" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "Verwischen" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "Schnelles Update" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "Speichern" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "Sie sollten dies nie lesen" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "Vorheriges Lied" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "Nächstes Lied" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "Bildschirm löschen" lyricue-4.0.12/po/fr.po0000664000000000000000000011601213053456656011545 0ustar # French translation of lyricue. # Copyright (C) 2005 Chris Debenham # This file is distributed under the same license as the lyricue package. # # Claude Paroz , 2005-2009. # msgid "" msgstr "" "Project-Id-Version: lyricue 2.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2013-11-25 08:22+0000\n" "Last-Translator: Claude Paroz \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: fr\n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "Erreur SQL %u : %s" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "Désolé, impossible d'ouvrir la base de données de paroles.\n" "Veuillez vérifier que Lyricue est installé correctement et que MySQL " "fonctionne" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" "Désolé, impossible d'ouvrir la base de données de bibles.\n" "Veuillez vérifier que Lyricue est installé correctement et que la base de " "données\n" "de bibles existe.\n" "La base de données demandée s'appelle " #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "Désolé, impossible d'ouvrir la base de données de médias.\n" "Veuillez vérifier que Lyricue est installé correctement et que MySQL " "fonctionne" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" "Impossible de préparer la requête.\n" "Est-ce que MySQL s'est arrêté ?" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" "Impossible d'exécuter la requête.\n" "Est-ce que MySQL s'est arrêté ?" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" "Désolé, impossible de détecter le réseau.\n" "Vérifiez que l'application ne fonctionne pas déjà" #: ../src/lyricue:327 msgid "Could not open " msgstr "Impossible d'ouvrir " #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" "Impossible de lire le fichier, êtes-vous sûr qu'il existe ?\n" "Le fichier concerné se nomme " #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" "Impossible d'enregistrer le fichier, vous ne disposez peut-être pas des " "permissions nécessaires.\n" "Vérifiez les permissions de " #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" "\n" "Utilisation : lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "Aucune bible n'a été sélectionnée\n" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "Titre" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "Livre" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "Numéro du chant" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "/Éditer le chant" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "/Supprimer le chant" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "/Rafraîchir la liste" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "/Classer chants par numéro" #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "/Classer chants par titre" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "/Ajouter à la liste de lecture" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "/Définir les couleurs de police" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "/Dupliquer l'élément" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "/Supprimer de la liste de lecture" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "/Rafraîchir la liste de lecture" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "/Inverser l'affichage des lignes" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "/Passer en boucle cet élément de la liste" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "/Associer à l'arrière-plan" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "/Enlever l'association à l'arrière-plan" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "/Déplacer à la sous-liste/Principale" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "/Déplacer à la sous-liste/" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "Voulez-vous réellement supprimer " #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Artiste" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "Page " #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "Page" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "Sélectionner un chant à importer" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "Voulez-vous réellement effacer la liste de lecture actuelle ?" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "Confirmationd'effacement de la liste de lecture" #: ../src/lyricue:3902 msgid "Select " msgstr "Sélectionner " #: ../src/lyricue:3902 msgid " Colour" msgstr " Couleur" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "Contenus du chant" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "Chants disponibles" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "Nombre total de chants disponibles" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "Titre du chant" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "Livre de chants" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "Créer un nouveau profil" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "Créer un nouveau profil" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "Nom du profil" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "Entrer un nom de fichier pour l'export" #: ../src/lyricue:5313 msgid "Song No" msgstr "Chant N°" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "Créer une nouvelle liste de lecture" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "Nom de la liste" #: ../src/lyricue:5784 msgid "Copying " msgstr "Copie " #: ../src/lyricue:5826 msgid "Renaming " msgstr "Renommage de " #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "Charger la projection Lyricue" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "Fermer la projection Lyricue" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "Lyricue" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "Importer une présentation" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "Sélectionner une catégorie" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "Choisir un dossier" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "Annuler" #: ../src/lyricue:7598 msgid "OK" msgstr "OK" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "Création d'une nouvelle sous-liste" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "Nom de la sous-liste" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "Choisissez un arrière-plan" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "Par défaut" #: ../src/lyricue:8635 msgid "Add a user" msgstr "Ajouter un utilisateur" #: ../src/lyricue:8637 msgid "Enter username" msgstr "Saisissez le nom d'utilisateur" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "Confirmation de la suppression d'image" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "Choix du fichier de base de données de sauvegarde" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "Confirmation de la restauration de base de données" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" "ATTENTION : la restauration de cette base de données écrasera votre base de " "données actuelle" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "Voulez-vous vraiment quitter Lyricue ?" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" "Impossible de se connecter en administrateur à la base de données, celle-ci " "est\n" "peut-être arrêtée. Essayez encore une fois la connexion en administrateur." #: ../src/lyricue:11275 msgid "Login Error" msgstr "Erreur de connexion" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "Aucun titre DVD n'a été trouvé" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "Impossible de lire le DVD. Il est peut-être absent du lecteur" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "Bible installée à partir de " #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "Impossible de charger à partir de " #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "Installer de nouvelles bibles" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "Assistant première utilisation" #: ../src/lyricue:12982 msgid "Welcome" msgstr "Bienvenue" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "Emplacement" #: ../src/lyricue:12994 msgid "Database login" msgstr "Connexion à la base de données" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "Dossiers Image" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "Nom d'utilisateur/Mot de passe accepté" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "Nom d'utilisateur/Mot de passe incorrect" #: ../src/lyricue:13521 msgid "inactive" msgstr "inactif" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "Voulez-vous vraiment supprimer le profil \"" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "Supprimer le profil \"" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "Écrit par " #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" "Comme c'est la première fois que vous démarrez Lyricue, certains paramètres " "de base doivent être maintenant configurés." #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" "L'interface de Lyricue peut apparaître sur une autre machine que celle où se " "trouve la base de données.\n" "Vous pouvez définir ici le nom de la machine où se trouve la base de " "données.\n" "(laissez tel quel ou écrivez locallhost si vous ne savez pas)" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "Mot de passe" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "Identifiant" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "root" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" "Lyricue utilise MySQL pour stocker ses données.\n" "Pour accéder à MySQL, je vais créer un utilisateur spécial «[npsb]lyric » \n" "Pour cela, j'ai besoin de votre mot de passe root MySQL.\n" "Note : ce mot de passe n'est stocké nulle part" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" "Lyricue a besoin d'un emplacement pour charger ses images et arrières-" "plans.\n" "Les dossiers des images et des arrière-plans peuvent être communs ou " "séparés, à votre choix.\n" "Veuillez choisir un dossier pour ces éléments." #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "Répertoire des images" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "Répertoire des arrière-plans" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "Dossier" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "Aucune sélectionnée" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "Gauche" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "Centré" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "Droite" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "Haut" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "Bas" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "Saisissez les détails de connexion" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" "Saisissez le nom de connexion et le mot\n" "de passe de l'administrateur MySQL" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "Nom de connexion" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "Mot de passe" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "Administration de Lyricue" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "Identifiant" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "Liste de lecture" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "Éditer" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "Effacer" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "Afficher" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "Admin" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "Ajouter utilisateur" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "Confirmer l'effacement du chant" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "Êtes-vous certain ?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "Sélectionner les bases de données à sauvegarder" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "Chants, listes de lecture, utilisation" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "Images, arrière-plans, médias" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "Enregistrer le fichier sous" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "Naviguer" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "Sélectionner un répertoire" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "Heure de fin" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "Durée" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "Choisir un titre du DVD" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "Choisissez le numéro du titre DVD" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "Heure de début" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "Choix d'un intervalle temporel" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "Erreur de Lyricue" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "label" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Détails" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "Sélectionner un fichier" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "Choisir une image" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Catégorie" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "Sous-liste" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "Actions sur la base de données" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "Déplacer" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "Couleur de police" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "Couleur d'ombrage" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "Par défaut" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "Importer des données depuis un fichier" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "Utiliser cette boite de dialogue pour importer une liste de chansons" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "Exemple de listes de chansons" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "Sélectionnez le fichier à importer" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "Régler la durée de la boucle" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "Secondes" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "Millisecondes" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "Aucun" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "Fondu" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "Préférences" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "Paramètres du profil :" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "Polices pour la projection" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "Pied de page" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "Principal" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "En-tête" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "Largeur d'ombrage" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "Écr." #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "Polices" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "Réglages du projecteur" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "Justification du texte" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "Alignement vertical du texte" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "Alignement horizontal du texte" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "Marge verticale" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "Marge horizontale" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "Transition par défaut" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "Ignorer les clics de souris" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "Décalage de la fenêtre" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "Diverses valeurs par défaut" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "Pages en boucle" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "Étendre les éléments lors d'ajout à la liste de lecture" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "Journaliser chants" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "Prévisualisation dynamique" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "Mini-vue" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "Avancé" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "Bible" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "Éléments spéciaux en tête de listes" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "Images" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "Arrière-plans" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "Annonces du jour" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "Options de récupération" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "Base de données de sauvegarde" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "Restaurer la base de données" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "Recherche avancée" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "Rechercher paroles" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "Rechercher" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "Ajouter à la liste de lecture" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "Selectionner des chansons pour importer" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "Sélectionner" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "Tout désélectionner" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "Décalage de fenêtre" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "Faites glisser cette fenêtre vers l'écran du projecteur" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "À propos de Lyricue" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "Version #VERSION#" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" "Ecrit par:\n" "Chris Debenham & Clint Turner\n" "Site Web:\n" "http://www.lyricue.org/" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "Remerciements" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "Installeur de bible" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" "Sélectionnez le fichier contenant la bible que vous souhaitez\n" "importer. De nouvelles bibles peuvent être téléchargées sur les\n" "sites ci-dessous. Cliquez sur le bouton correspondant pour afficher\n" "le site dans votre navigateur Web. Revenez à cet endroit lorsque\n" "vous aurez téléchargé le fichier à installer." #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" "Bibles du projet Sword\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" "Bibles LyricueDB\n" "http://www.lyricue.org/bibles" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "Sélectionner un fichier à installer" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "Choisir un livre" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "Genèse" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "Exode" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "Lévitique" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "Nombres" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "Deutéronome" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "Josué" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "Juges" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "Ruth" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "1 Samuel" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "2 Samuel" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "1 Rois" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "2 Rois" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "1 Chroniques" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "2 Chroniques" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "Esdras" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "Néhémie" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "Esther" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "Job" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "Psaumes" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "Proverbes" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "Ecclésiaste" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "Cantique des cantiques" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "Esaïe" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "Jérémie" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "Lamentations de Jérémie" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "Ezéchiel" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "Daniel" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "Osée" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "Joël" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "Michée" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "Aggée" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "Amos" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "Abdias" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "Jonas" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "Nahum" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "Habacuc" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "Sophonie" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "Zacharie" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "Malachie" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "Cantique des Cantiques" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "Nouveau Testament" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "Matthieu" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "Marquer" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "Luc" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "Jean" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "Actes" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "Galates" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "1 Thessaloniciens" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "Romains" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "1 Corinthiens" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "2 Corinthiens" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "Ephésiens" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "Philippiens" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "Colossiens" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "1 Timothée" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "2 Thessaloniciens" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "2 Timothée" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "Tite" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "Philémon" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "Hébreux" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "Jacques" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "1 Pierre" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "2 Pierre" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "1 Jean" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "2 Jean" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "3 Jean" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "Jude" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "Apocalypse" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "Ancien Testament" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "Ajouter nouveau chant" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "Fichier" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "Importer" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "Exporter" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Ajouter page" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "Supprimer la page" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "Prévisualiser la page" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "Insérer le copyright prédéfini" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "Aide" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "Titre du chant" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "Nom du recueil" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "Numéro du chant dans son recueil" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "Qui a écrit cela" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "Mots-clés" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "Thèmes du chant" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Copyright" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "Information sur le droit d'auteur" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "Journaliser chant" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "Prévisualiser" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "Enregistrer et fermer" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "Profils" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "Gestion des profils" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "Élément de liste" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Ajouter fichier" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "Page précédente" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "Page suivante" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "Effacer le texte" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "Applications" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "Page préc." #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "Point suivant" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "Écran vierge" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "Réafficher" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "Lancer la projection" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "Rechercher directement dans la liste des chants" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "Effacer le champ de recherche" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "Nouveau" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "Ajouter le chant sélectionné à la liste de lecture" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "Chants" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Actuel" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "Précédent" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "Arrière-plan Prévisualiser" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "Ajouter à la liste de lecture" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "Fichiers" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "Taper le verset à afficher" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "<" #: ../data/windowMain.ui.h:64 msgid ">" msgstr ">" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "Ajouter ces versets à la liste de lecture" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "Afficher maintenant" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "Afficher" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "Déroulement auto" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "Dérouler texte" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "Faire pivoter le texte" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "Aléatoire" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "Direction en entrée" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "Direction en sortie" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "Inverser la direction" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "Axe X" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "Axe Y" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "Axe Z" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "Appliquer à la sélection" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "Appliquer à la liste de lecture" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "Transitions" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "Aucune liste de lecture chargée" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "Aperçus" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "Choisir la liste de lecture" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "Charger" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "Renommer" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "Copier" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "Descendre l'élément courant" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "Descendre" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "Monter l'élément courant" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "Monter" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "Supprimer l'élément actuel de la liste de lecture" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "Supprimer" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "Ajouter sous-liste" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "0:00/0:00" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "Flou" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "Mise à jour rapide" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "Enregistrer" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "Enregistrer une copie" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "Gestionnaire de profils" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "Gestion des profils disponibles" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "Supprimer le profil" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "Créer un profil" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "Lier un profil à un ordinateur" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "Ordinateurs" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "Vous ne devriez jamais lire cela" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "Chant précédent" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "Chant suivant" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "Nettoyer l'écran" lyricue-4.0.12/po/sr.po0000664000000000000000000007452213053456656011573 0ustar # Serbian translation for lyricue # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the lyricue package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: lyricue\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2012-10-19 01:17+0000\n" "Last-Translator: Мирослав Николић \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: sr\n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" #: ../src/lyricue:327 msgid "Could not open " msgstr "" #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "" #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "" #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "" #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "" #: ../src/lyricue:3902 msgid "Select " msgstr "" #: ../src/lyricue:3902 msgid " Colour" msgstr "" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "" #: ../src/lyricue:5313 msgid "Song No" msgstr "" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "" #: ../src/lyricue:5784 msgid "Copying " msgstr "" #: ../src/lyricue:5826 msgid "Renaming " msgstr "" #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "" #: ../src/lyricue:7598 msgid "OK" msgstr "" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "" #: ../src/lyricue:8635 msgid "Add a user" msgstr "" #: ../src/lyricue:8637 msgid "Enter username" msgstr "" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" #: ../src/lyricue:11275 msgid "Login Error" msgstr "" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "" #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "" #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "" #: ../src/lyricue:12982 msgid "Welcome" msgstr "" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "" #: ../src/lyricue:12994 msgid "Database login" msgstr "" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "" #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "1 Самуел" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "2 Самуел" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "1 Краљ" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "2 Краљ" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "1 Солунац" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "1 Тимоти" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "2 Солунац" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "2 Тимоти" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "1 Петар" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "2 Петар" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "1 Јован" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "2 Јован" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "3 Јован" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Додај страну" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Додај датотеку" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "<" #: ../data/windowMain.ui.h:64 msgid ">" msgstr ">" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "" lyricue-4.0.12/po/en_GB.po0000664000000000000000000010761213053456656012116 0ustar # English (United Kingdom) translation for lyricue # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the lyricue package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: lyricue\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2012-10-19 01:18+0000\n" "Last-Translator: ChrisDebenham \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:27+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: \n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "SQL Error %u: %s" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" "Unable to prepare query.\n" "Has MySQL died?" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" "Unable to execute query.\n" "Has MySQL died?" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" #: ../src/lyricue:327 msgid "Could not open " msgstr "Could not open " #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "No bible has been selected\n" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "Title" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "Book" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "Song Number" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "/Edit Song" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "/Delete Song" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "/Refresh List" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "/Order - Songbook -> No." #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "/Order - Songbook -> Name." #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "/Add to Playlist" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "/Duplicate Item" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "/Remove from Playlist" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "/Refresh Playlist" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "/Invert Line Display" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "/Loop this playlist item" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "/Associate background" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "/Dis-associate background" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "/Move to sublist/Main" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "/Move to sublist/" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "Are you sure you wish to delete " #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Artist" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "Page " #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "Page" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "Select song to import" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "Are you sure you wish to clear the current playlist?" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "Confirm Clear Playlist" #: ../src/lyricue:3902 msgid "Select " msgstr "Select " #: ../src/lyricue:3902 msgid " Colour" msgstr " Colour" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "Song Contents" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "Available songs" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "Total number of songs available" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "Song Name" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "Song Book" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "Enter filename for export" #: ../src/lyricue:5313 msgid "Song No" msgstr "Song No" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "Create new playlist" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "Name of playlist" #: ../src/lyricue:5784 msgid "Copying " msgstr "Copying " #: ../src/lyricue:5826 msgid "Renaming " msgstr "Renaming " #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "Load Lyricue Display" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "Close Lyricue Display" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "Lyricue" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "Importing presentation" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "Select Category" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "Choose a Directory" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "Cancel" #: ../src/lyricue:7598 msgid "OK" msgstr "OK" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "Create new sublist" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "Name of sublist" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "Choose a Background" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "Set as Default" #: ../src/lyricue:8635 msgid "Add a user" msgstr "Add a user" #: ../src/lyricue:8637 msgid "Enter username" msgstr "Enter username" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "Are you sure you want to exit Lyricue?" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" #: ../src/lyricue:11275 msgid "Login Error" msgstr "Login Error" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "No DVD titles found" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "Unable to open the dvd. There may be no media in the drive" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "Bible installed from " #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "Unable to load from " #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "Install new bibles" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "First-run wizard" #: ../src/lyricue:12982 msgid "Welcome" msgstr "Welcome" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "Location" #: ../src/lyricue:12994 msgid "Database login" msgstr "Database login" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "Image Directories" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "Username/Password accepted" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "Username/Password failed" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "Written by " #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "Password:" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "Username:" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "root" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" "Lyricue requires somewhere to load its images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "separate.\n" "Please select a suitable directory for each." #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "Image Directory" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "Backgrounds Directory" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "Folder" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "None selected" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "Centre" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "Top" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "Bottom" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "Enter Login details" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" "Enter the login name and password\n" "of your MySQL Administration user" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "Login name" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "Password" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "Lyricue Administration" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "Username" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "Playlist" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "Edit" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "Delete" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "Display" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "Admin" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "Add user" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "Confirm Delete Song" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "Are you sure?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "Select Databases to backup" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "Songs, Playlists, Usage" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "Images, Backgrounds, Media" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "File to save as" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "Browse" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "Select Directory" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "Select DVD Title" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "Select the DVD title number to play" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "Start time" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "Select time period" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "Lyricue Error" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "label" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Details" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "Select File" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "Choose an Image" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Category" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "Sublist" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "Database actions" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "Move" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "Font Colour" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "Shadow Colour" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "Default" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "Import Data from File" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "Use this dialogue to import a songlist" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "Sample songlists" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "Select file to import" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "Set Loop timer" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "Seconds" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "Milliseconds" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "None" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "Fade" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "Preferences" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "Fonts used for projector" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "Footer" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "Main" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "Header" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "Shadow Offset" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "OSD" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "Fonts" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "Settings for projector" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "Text Justification" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "Vertical Text Location" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "Horizontal Text Location" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "Default Transition" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "Window offset" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "Various defaults" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "Loop pages" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "Audit Songs" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "Dynamic Preview" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "Miniview" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "Advanced" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "Bible" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "Special items that will be first in lists" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "Images" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "Backgrounds" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "Today's Announcements" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "Recovery Options" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "Backup Database" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "Restore Database" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "Advanced Search" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "Search Lyrics" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "Search" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "Add to playlist" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "Select songs to import" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "Select All" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "Unselect All" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "Window Offset" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "Drag this window to the projector screen" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "About Lyricue" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "Version #VERSION#" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "Thanks" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "Bible Installer" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "Select file to install" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "Choose a Book" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "Genesis" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "Exodus" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "Leviticus" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "Numbers" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "Deuteronomy" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "Joshua" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "Judges" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "Ruth" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "1 Samuel" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "2 Samuel" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "1 Kings" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "2 Kings" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "1 Chronicles" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "2 Chronicles" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "Ezra" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "Nehemiah" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "Esther" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "Job" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "Psalms" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "Proverbs" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "Ecclesiastes" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "Song of Solomon" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "Isaiah" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "Jeremiah" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "Lamentations" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "Ezekiel" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "Daniel" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "Hosea" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "Joel" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "Micah" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "Haggai" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "Amos" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "Obadiah" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "Jonah" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "Nahum" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "Habakkuk" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "Zephaniah" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "Zechariah" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "Malachi" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "Song of Songs" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "New Testament" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "Matthew" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "Mark" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "Luke" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "John" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "Acts" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "Galatians" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "1 Thessalonians" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "Romans" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "1 Corinthians" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "2 Corinthians" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "Ephesians" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "Philippians" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "Colossians" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "1 Timothy" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "2 Thessalonians" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "2 Timothy" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "Titus" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "Philemon" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "Hebrews" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "James" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "1 Peter" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "2 Peter" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "1 John" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "2 John" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "3 John" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "Jude" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "Revelation" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "Old Testament" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "Add new Song" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "Import" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "Export" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Add Page" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "Remove Page" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "Preview Page" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "The title of the song" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "The songbook name" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "The song number within the book" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "Who wrote this" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "Keywords" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "Topics of song" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Copyright" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "Any copyright information" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "Audit Song" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "Preview" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "Save and Close" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Add File" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "Previous Page" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "Next Page" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "Clear Text" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "Prev. Page" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "Next Point" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "Blank Screen" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "Search the songlist directly" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "Clear Search Field" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "New" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "Add the selected song to the playlist" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "Songs" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Current" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "Previous" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "Background preview" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "Add to Playlist" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "Files" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "Enter Verse to display" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "<" #: ../data/windowMain.ui.h:64 msgid ">" msgstr ">" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "Add these verses to the playlist" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "Show Now" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "Show" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "Autoshow" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "Slide Text" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "Rotate Text" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "In Direction" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "Out Direction" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "Rotate Direction" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "X-Axis" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "Y-Axis" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "Z-Axis" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "Apply to Selected" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "Apply to Playlist" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "Transitions" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "No Playlist loaded" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "Choose Your Playlist" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "Load" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "Rename" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "Move the current item down" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "Move Down" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "Move the current item up" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "Move Up" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "Remove the current item from the playlist" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "Remove" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "Add Sublist" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "Blur" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "Quick Update" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "Save" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "You should never read this" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "Previous Song" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "Next Song" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "Clear Screen" lyricue-4.0.12/po/oc.po0000664000000000000000000010120713053456656011537 0ustar # Occitan (post 1500) translation for lyricue # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the lyricue package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: lyricue\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2012-10-19 01:16+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: \n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "Error SQL %u : %s" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" #: ../src/lyricue:327 msgid "Could not open " msgstr "Impossible de dobrir " #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "Títol" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "Libre" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "/Editar lo cant" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "/Suprimir lo cant" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "/Refrescar la lista" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "" #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "/Duplicar l'element" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "/Associar al rèire plan" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "" #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Artista" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "Pagina " #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "Pagina" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "" #: ../src/lyricue:3902 msgid "Select " msgstr "Seleccionar " #: ../src/lyricue:3902 msgid " Colour" msgstr " Color" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "Cants disponibles" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "" #: ../src/lyricue:5313 msgid "Song No" msgstr "Cant N°" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "Nom de la lista" #: ../src/lyricue:5784 msgid "Copying " msgstr "" #: ../src/lyricue:5826 msgid "Renaming " msgstr "Cambiament de nom de " #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "Lyricue" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "Importar una presentacion" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "Causir un dorsièr" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "Anullar" #: ../src/lyricue:7598 msgid "OK" msgstr "D'acòrdi" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "Nom de la soslista" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "Definir per defaut" #: ../src/lyricue:8635 msgid "Add a user" msgstr "Apondre un utilizaire" #: ../src/lyricue:8637 msgid "Enter username" msgstr "Picatz lo nom d'utilizaire" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "Sètz segur que volètz quitar Lyricue ?" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" #: ../src/lyricue:11275 msgid "Login Error" msgstr "Error pendent l'autentificacion" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "Bíblia installada a partir de " #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "Impossible de cargar a partir de " #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "" #: ../src/lyricue:12982 msgid "Welcome" msgstr "Benvenguda" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "Emplaçament" #: ../src/lyricue:12994 msgid "Database login" msgstr "Connexion a la banca de donadas" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "Dorsièrs Imatge" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "Nom d'utilizaire/Senhal incorrècte" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "Escrich per " #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "Senhal :" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "Nom d'utilizaire :" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "raiç" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "Repertòri dels imatges" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "Dorsièr" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "Centre" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "Amont" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "Bas" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "Nom del compte" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "Senhal" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "Administracion de Lyricue" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "Nom d'utilizaire" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "Lista de lectura" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "Modificar" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "Afichar" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "Administrator" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "Apondre un utilizaire" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "Sètz segur(a) ?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "Percórrer" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "Seleccionar lo dorsièr" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "Ora de començament" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "Error de Lyricue" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "etiqueta" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Detalhs" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "Seleccionar un fichièr" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "Causir un imatge" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Categoria" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "Soslista" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "Desplaçar" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "Per defaut" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "Seleccionatz lo fichièr d'importar" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "Segondas" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "Millisegondas" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "Pas cap" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "Fondut" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "Preferéncias" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "Pè de pagina" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "General" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "Entèsta" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "OSD" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "Poliças" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "Justificacion del tèxte" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "Transicion per defaut" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "Mini-vista" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "Detalhs a_vançats" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "Imatges" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "Rèire plans" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "Anonci del jorn" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "Restablir la banca de donadas" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "Recèrca avançada" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "Recercar" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "Apondre a la lista de lecturas" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "Seleccionar tot" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "Deseleccionar tot" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "A prepaus de Lyricue" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "Version #VERSION#" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" "Escrich per :\n" "Chris Debenham & Clint Turner\n" "Site Web :\n" "http://www.lyricue.org/" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "Mercejaments" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "Genèsi" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "Exòdi" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "Levitic" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "Chifras" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "Jutges" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "Rut" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "1 Samual" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "2 Samual" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "1 Reis" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "2 Reis" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "1 Cronicas" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "2 Cronicas" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "Nehemiah" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "Estèr" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "Prètzfach" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "Psaumes" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "Provèrbis" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "Jeremias" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "Danièl" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "Amos" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "Abdiàs" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "Jonàs" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "Nahum" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "Sofonia" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "Malachi" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "Novèl Testament" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "Matieu" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "Marcar" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "Luc" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "Joan" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "Actes" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "1 Tessalonicians" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "Romans" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "1 Corintians" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "2 Corintians" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "Efesians" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "Filipians" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "Colossians" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "1 Timotèu" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "2 Tessalonicians" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "2 Timotèu" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "Filemon" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "Ebrieu" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "Jacme" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "1 Pèire" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "2 Pèire" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "1 Joan" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "2 Joan" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "3 Joan" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "Apocalipsi" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "Ancian Testament" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "Apondre un cant novèl" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "Importar" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "Exportar" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Apondre una pagina" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "Nom del recuèlh" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "Mots claus" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Dreches d'autor" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "Informacion suls dreches d'autor" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "Previsualizacion" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "Enregistrar e tampar" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Apondre un fichièr" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "Pagina precedenta" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "Pagina seguenta" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "Escafar lo tèxte" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "Pagina prec." #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "Punt seguent" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "Ecran void" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "Novèl" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "Apondre lo cant seleccionat a la lista de lectura" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "Cants" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Actuala" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "Precedenta" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "Apondre a la lista de lectura" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "Fichièrs" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "<" #: ../data/windowMain.ui.h:64 msgid ">" msgstr ">" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "Afichar" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "Inversar la direccion" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "Axe dels X" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "Axe dels Y" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "Axe Z" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "Aplicar a la seleccion" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "Aplicar a la lista de lectura" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "Transicions" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "Cargament" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "Tornar nomenar" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "Desplaçar cap aval" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "Desplaçar cap amont" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "Suprimir" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "Apondre una soslista" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "Fosc" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "Enregistrar" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "Cant precedent" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "Cançon seguenta" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "Netejar l'ecran" lyricue-4.0.12/po/da.po0000664000000000000000000007715613053456656011541 0ustar # Danish translation for lyricue # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the lyricue package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: lyricue\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-07-07 05:19+0000\n" "PO-Revision-Date: 2012-10-19 01:16+0000\n" "Last-Translator: ChrisDebenham \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-07-08 05:26+0000\n" "X-Generator: Launchpad (build 17608)\n" "Language: da\n" #: ../src/database.c:122 ../src/display.c:1404 #, c-format msgid "SQL Error %u: %s" msgstr "SQL Fejl %u: %s" #: ../src/lyricue:305 msgid "" "I'm sorry but I could not open the lyric database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:310 msgid "" "I'm sorry but I could not open the bible database.\n" "Please confirm that Lyricue is installed correctly and the current bible " "database exists.\n" "The requested database was named " msgstr "" #: ../src/lyricue:315 msgid "" "I'm sorry but I could not open the media database.\n" "Please confirm that Lyricue is installed correctly and MySQL is running" msgstr "" #: ../src/lyricue:319 msgid "" "Unable to prepare query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:321 msgid "" "Unable to execute query.\n" "Has mysql died?" msgstr "" #: ../src/lyricue:324 msgid "" "Sorry, I was unable to listen on the network.\n" "Please make sure I am not already running" msgstr "" #: ../src/lyricue:327 msgid "Could not open " msgstr "" #: ../src/lyricue:330 msgid "" "Unable to read the file, are you sure it exists?\n" "The file asked for was " msgstr "" #: ../src/lyricue:335 msgid "" "Unable to write to the file, you may not have sufficent permissions.\n" "Please check the permissions for " msgstr "" #: ../src/lyricue:340 msgid "" "\n" "Usage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n" "\n" msgstr "" #: ../src/lyricue:354 msgid "No bible has been selected\n" msgstr "" #: ../src/lyricue:993 ../src/lyricue:1482 ../src/lyricue:5292 #: ../src/lyricue:9926 msgid "Title" msgstr "" #: ../src/lyricue:998 ../src/lyricue:1492 ../src/lyricue:5306 #: ../src/lyricue:9936 msgid "Book" msgstr "" #: ../src/lyricue:1003 ../src/lyricue:1497 ../src/lyricue:4363 #: ../src/lyricue:9941 ../data/windowEditSong.ui.h:15 msgid "Song Number" msgstr "" #: ../src/lyricue:1147 msgid "/Edit Song" msgstr "" #: ../src/lyricue:1152 msgid "/Delete Song" msgstr "" #: ../src/lyricue:1159 msgid "/Refresh List" msgstr "" #: ../src/lyricue:1163 msgid "/Order - Songbook -> No." msgstr "" #: ../src/lyricue:1167 msgid "/Order - Songbook -> Name." msgstr "" #: ../src/lyricue:1175 msgid "/Add to Playlist" msgstr "" #: ../src/lyricue:1231 msgid "/Set font colours" msgstr "" #: ../src/lyricue:1338 msgid "/Duplicate Item" msgstr "" #: ../src/lyricue:1340 msgid "/Remove from Playlist" msgstr "" #: ../src/lyricue:1343 msgid "/Refresh Playlist" msgstr "" #: ../src/lyricue:1344 msgid "/Invert Line Display" msgstr "" #: ../src/lyricue:1345 msgid "/Loop this playlist item" msgstr "" #: ../src/lyricue:1347 msgid "/Associate background" msgstr "" #: ../src/lyricue:1351 msgid "/Dis-associate background" msgstr "" #: ../src/lyricue:1355 msgid "/Move to sublist/Main" msgstr "" #: ../src/lyricue:1360 msgid "/Move to sublist/" msgstr "" #: ../src/lyricue:1458 ../src/lyricue:9660 msgid "Are you sure you wish to delete " msgstr "" #: ../src/lyricue:1487 ../src/lyricue:4364 ../src/lyricue:5299 #: ../src/lyricue:9931 ../data/windowEditSong.ui.h:17 msgid "Artist" msgstr "Kunstner:" #: ../src/lyricue:1717 ../src/lyricue:1998 ../src/lyricue:2006 #: ../src/lyricue:2018 ../src/lyricue:3322 msgid "Page " msgstr "" #: ../src/lyricue:1966 ../data/windowEditSong.ui.h:5 msgid "Page" msgstr "" #: ../src/lyricue:2294 msgid "Select song to import" msgstr "" #: ../src/lyricue:2948 msgid "Are you sure you wish to clear the current playlist?" msgstr "" #: ../src/lyricue:2951 msgid "Confirm Clear Playlist" msgstr "" #: ../src/lyricue:3902 msgid "Select " msgstr "" #: ../src/lyricue:3902 msgid " Colour" msgstr "" #: ../src/lyricue:4253 ../src/lyricue:4264 ../data/dialogSearch.ui.h:4 msgid "Song Contents" msgstr "" #: ../src/lyricue:4338 ../src/lyricue:4355 ../data/dialogPrefs.ui.h:55 msgid "Available songs" msgstr "Tilgængelige sange" #: ../src/lyricue:4357 msgid "Total number of songs available" msgstr "" #: ../src/lyricue:4361 ../data/windowEditSong.ui.h:11 msgid "Song Name" msgstr "" #: ../src/lyricue:4362 ../data/windowEditSong.ui.h:13 msgid "Song Book" msgstr "" #: ../src/lyricue:4727 ../src/lyricue:4915 ../src/lyricue:4923 #: ../src/lyricue:13456 msgid "Create New Profile" msgstr "" #: ../src/lyricue:4926 ../src/lyricue:13617 msgid "Create new profile" msgstr "" #: ../src/lyricue:4928 ../src/lyricue:13619 msgid "Name of profile" msgstr "" #: ../src/lyricue:5197 ../src/lyricue:12586 ../src/lyricue:13331 msgid "Enter filename for export" msgstr "" #: ../src/lyricue:5313 msgid "Song No" msgstr "" #: ../src/lyricue:5712 msgid "Create new playlist" msgstr "" #: ../src/lyricue:5714 msgid "Name of playlist" msgstr "" #: ../src/lyricue:5784 msgid "Copying " msgstr "" #: ../src/lyricue:5826 msgid "Renaming " msgstr "" #: ../src/lyricue:6227 msgid "Load Lyricue Display" msgstr "" #: ../src/lyricue:6228 msgid "Close Lyricue Display" msgstr "" #: ../src/lyricue:6297 ../data/windowMain.ui.h:1 msgid "Lyricue" msgstr "" #: ../src/lyricue:6599 msgid "Importing presentation" msgstr "" #: ../src/lyricue:7166 ../src/lyricue:9545 ../data/dialogSelectCategory.ui.h:1 msgid "Select Category" msgstr "" #: ../src/lyricue:7595 msgid "Choose a Directory" msgstr "" #: ../src/lyricue:7597 ../data/dialogSearch.ui.h:6 ../data/windowBook.ui.h:70 #: ../data/windowEditSong.ui.h:27 ../data/windowMain.ui.h:91 msgid "Cancel" msgstr "Fortryd" #: ../src/lyricue:7598 msgid "OK" msgstr "" #: ../src/lyricue:7641 ../src/lyricue:7787 msgid "Create new sublist" msgstr "" #: ../src/lyricue:7643 ../src/lyricue:7789 msgid "Name of sublist" msgstr "" #: ../src/lyricue:7706 msgid "Choose a Background" msgstr "" #: ../src/lyricue:7727 msgid "Set as Default" msgstr "" #: ../src/lyricue:8635 msgid "Add a user" msgstr "" #: ../src/lyricue:8637 msgid "Enter username" msgstr "" #: ../src/lyricue:9665 msgid "Confirm Delete Image" msgstr "" #: ../src/lyricue:9805 msgid "Select Database Backup file" msgstr "" #: ../src/lyricue:9814 msgid "Confirm Restore Database" msgstr "" #: ../src/lyricue:9818 msgid "WARNING: Restoring this database will overwrite your current database" msgstr "" #: ../src/lyricue:11215 msgid "Are you sure you want to exit Lyricue?" msgstr "" #: ../src/lyricue:11270 msgid "" "Unable to login to database as admin, maybe the database is down.\n" "Please re-enter your database admin login and retry" msgstr "" #: ../src/lyricue:11275 msgid "Login Error" msgstr "" #: ../src/lyricue:12153 msgid "No DVD titles found" msgstr "" #: ../src/lyricue:12156 msgid "Unable to open the dvd. There may be no media in the drive" msgstr "" #: ../src/lyricue:12381 msgid "Bible installed from " msgstr "" #: ../src/lyricue:12383 msgid "Unable to load from " msgstr "" #: ../src/lyricue:12443 msgid "Install new bibles" msgstr "" #: ../src/lyricue:12977 msgid "First-run wizard" msgstr "" #: ../src/lyricue:12982 msgid "Welcome" msgstr "" #: ../src/lyricue:12985 ../data/assistantFirstRun.ui.h:5 msgid "Location" msgstr "" #: ../src/lyricue:12994 msgid "Database login" msgstr "" #: ../src/lyricue:13005 ../data/assistantFirstRun.ui.h:21 msgid "Image Directories" msgstr "" #: ../src/lyricue:13078 msgid "Username/Password accepted" msgstr "" #: ../src/lyricue:13083 ../data/assistantFirstRun.ui.h:6 msgid "Username/Password failed" msgstr "" #: ../src/lyricue:13521 msgid "inactive" msgstr "" #: ../src/lyricue:13647 msgid "Are you sure you wish to remove the profile \"" msgstr "" #: ../src/lyricue:13651 msgid "Remove Profile \"" msgstr "" #: ../src/lyricue_display.c:461 ../src/lyricue_display.c:466 msgid "Written by " msgstr "" #: ../data/assistantFirstRun.ui.h:1 msgid "" "As this is the first time you have run Lyricue we now walk through some " "initial settings" msgstr "" "Da det er første gang du kører Lyricue vil vi føre dig igennem nogle " "grundlæggende indstillinger" #: ../data/assistantFirstRun.ui.h:2 msgid "" "Lyricue can run the interface on a separate machine to where you run your " "database.\n" "You can set the hostname where the database is run here.\n" "(leave as default or localhost if you do not know)" msgstr "" #: ../data/assistantFirstRun.ui.h:7 msgid "Password:" msgstr "" #: ../data/assistantFirstRun.ui.h:8 msgid "Username:" msgstr "" #: ../data/assistantFirstRun.ui.h:9 ../data/dialogAdminLogin.ui.h:6 msgid "root" msgstr "" #: ../data/assistantFirstRun.ui.h:10 msgid "" "Lyricue uses MySQL to store its data.\n" "To access MySQL I will create a special user 'lyric'\n" "To do this I need your mysql root users password.\n" "Note: This password is not stored anywhere" msgstr "" #: ../data/assistantFirstRun.ui.h:14 msgid "Database Login" msgstr "" #: ../data/assistantFirstRun.ui.h:15 msgid "" "Lyricue requires somewhere to load it's images and backdrops from.\n" "The Image and Backgrounds directory can be the same or you can keep them " "seperate.\n" "Please select a suitable directory for each." msgstr "" #: ../data/assistantFirstRun.ui.h:18 ../data/dialogPrefs.ui.h:50 msgid "Image Directory" msgstr "Billedmappe" #: ../data/assistantFirstRun.ui.h:19 ../data/dialogPrefs.ui.h:52 msgid "Backgrounds Directory" msgstr "Baggrunds bibliotek" #: ../data/assistantFirstRun.ui.h:20 ../data/dialogPrefs.ui.h:51 msgid "Folder" msgstr "Mappe" #: ../data/assistantFirstRun.ui.h:22 msgid "" "Lyricue is now configured.\n" "Next you will be taken to the preferences dialog so you can set things up " "the way you want (or just accept the defaults and move on)" msgstr "" #: ../data/assistantFirstRun.ui.h:24 msgid "Done" msgstr "" #: ../data/assistantFirstRun.ui.h:25 ../data/dialogPrefs.ui.h:21 msgid "16:9" msgstr "" #: ../data/assistantFirstRun.ui.h:26 ../data/dialogPrefs.ui.h:22 msgid "4:3" msgstr "" #: ../data/assistantFirstRun.ui.h:27 msgid "None selected" msgstr "" #: ../data/assistantFirstRun.ui.h:28 ../data/dialogPrefs.ui.h:4 msgid "Left" msgstr "" #: ../data/assistantFirstRun.ui.h:29 ../data/dialogPrefs.ui.h:2 msgid "Centre" msgstr "Centrer" #: ../data/assistantFirstRun.ui.h:30 ../data/dialogPrefs.ui.h:5 msgid "Right" msgstr "" #: ../data/assistantFirstRun.ui.h:31 ../data/dialogPrefs.ui.h:1 msgid "Top" msgstr "" #: ../data/assistantFirstRun.ui.h:32 ../data/dialogPrefs.ui.h:3 msgid "Bottom" msgstr "Bund" #: ../data/dialogAdminLogin.ui.h:1 msgid "Enter Login details" msgstr "Indtast login oplysninger" #: ../data/dialogAdminLogin.ui.h:2 msgid "" "Enter the login name and password\n" "of your MySQL Administration user" msgstr "" "Indtast navn og kodeord for\n" "din MySQL administrator konto" #: ../data/dialogAdminLogin.ui.h:4 msgid "Login name" msgstr "" #: ../data/dialogAdminLogin.ui.h:5 msgid "Password" msgstr "" #: ../data/dialogAdmin.ui.h:1 msgid "Lyricue Administration" msgstr "" #: ../data/dialogAdmin.ui.h:2 msgid "Username" msgstr "" #: ../data/dialogAdmin.ui.h:3 ../data/windowMain.ui.h:18 msgid "Playlist" msgstr "" #: ../data/dialogAdmin.ui.h:4 ../data/windowMain.ui.h:9 msgid "Edit" msgstr "Rediger" #: ../data/dialogAdmin.ui.h:5 ../data/windowMain.ui.h:88 msgid "Delete" msgstr "Slet" #: ../data/dialogAdmin.ui.h:6 ../data/windowEditSong.ui.h:24 #: ../data/windowMain.ui.h:32 msgid "Display" msgstr "Visning" #: ../data/dialogAdmin.ui.h:7 msgid "Admin" msgstr "Administrator" #: ../data/dialogAdmin.ui.h:8 msgid "Add user" msgstr "Tilføj bruger" #: ../data/dialogConfirm.ui.h:1 msgid "Confirm Delete Song" msgstr "Bekræft sletning af sang" #: ../data/dialogConfirm.ui.h:2 msgid "Are you sure?" msgstr "Er du sikker?" #: ../data/dialogDatabase.ui.h:1 msgid "Select Databases to backup" msgstr "" #: ../data/dialogDatabase.ui.h:2 msgid "Songs, Playlists, Usage" msgstr "" #: ../data/dialogDatabase.ui.h:3 msgid "Images, Backgrounds, Media" msgstr "" #: ../data/dialogDatabase.ui.h:4 msgid "File to save as" msgstr "Gem til fil som" #: ../data/dialogDatabase.ui.h:5 msgid "Browse" msgstr "Gennemse" #: ../data/dialogDirChooser.ui.h:1 msgid "Select Directory" msgstr "" #: ../data/dialogDvd.ui.h:1 msgid "End time" msgstr "" #: ../data/dialogDvd.ui.h:2 msgid "Duration" msgstr "" #: ../data/dialogDvd.ui.h:3 msgid "Select DVD Title" msgstr "" #: ../data/dialogDvd.ui.h:4 msgid "Select the DVD title number to play" msgstr "" #: ../data/dialogDvd.ui.h:5 msgid "Start time" msgstr "" #: ../data/dialogDvd.ui.h:6 msgid "Select time period" msgstr "" #: ../data/dialogError.ui.h:1 msgid "Lyricue Error" msgstr "" #: ../data/dialogError.ui.h:2 msgid "label" msgstr "" #: ../data/dialogError.ui.h:3 msgid "Details" msgstr "Detaljer" #: ../data/dialogFileChooser.ui.h:1 msgid "Select File" msgstr "" #: ../data/dialogImage.ui.h:1 msgid "Choose an Image" msgstr "Vælg et billede" #: ../data/dialogImage.ui.h:2 msgid "Category" msgstr "Kategori" #: ../data/dialogImage.ui.h:3 msgid "Sublist" msgstr "" #: ../data/dialogImage.ui.h:4 msgid "Database actions" msgstr "Database handlinger" #: ../data/dialogImage.ui.h:5 msgid "Move" msgstr "" #: ../data/dialogImage.ui.h:6 ../data/dialogPrefs.ui.h:11 msgid "Font Colour" msgstr "Skrift farve" #: ../data/dialogImage.ui.h:7 ../data/dialogPrefs.ui.h:15 msgid "Shadow Colour" msgstr "" #: ../data/dialogImage.ui.h:8 ../data/windowMain.ui.h:69 msgid "Default" msgstr "Standard" #: ../data/dialogImportData.ui.h:1 msgid "Import Data from File" msgstr "Importer data fra fil" #: ../data/dialogImportData.ui.h:2 msgid "Use this dialog to import a songlist" msgstr "" #: ../data/dialogImportData.ui.h:3 msgid "Sample songlists" msgstr "" #: ../data/dialogImportData.ui.h:4 msgid "Select file to import" msgstr "" #: ../data/dialogLoop.ui.h:1 msgid "Set Loop timer" msgstr "" #: ../data/dialogLoop.ui.h:2 msgid "Seconds" msgstr "" #: ../data/dialogLoop.ui.h:3 msgid "Milliseconds" msgstr "" #: ../data/dialogPrefs.ui.h:6 ../data/windowMain.ui.h:70 msgid "None" msgstr "" #: ../data/dialogPrefs.ui.h:7 ../data/windowMain.ui.h:71 msgid "Fade" msgstr "Udton" #: ../data/dialogPrefs.ui.h:8 msgid "Preferences" msgstr "" #: ../data/dialogPrefs.ui.h:9 msgid "Settings for Profile:" msgstr "" #: ../data/dialogPrefs.ui.h:10 msgid "Fonts used for projector" msgstr "Skrifttyper projektoren bruger" #: ../data/dialogPrefs.ui.h:12 msgid "Footer" msgstr "Sidefod" #: ../data/dialogPrefs.ui.h:13 msgid "Main" msgstr "" #: ../data/dialogPrefs.ui.h:14 msgid "Header" msgstr "Overskrift" #: ../data/dialogPrefs.ui.h:16 msgid "Shadow Offset" msgstr "" #: ../data/dialogPrefs.ui.h:17 ../data/windowMain.ui.h:105 msgid "OSD" msgstr "" #: ../data/dialogPrefs.ui.h:18 msgid "Fonts" msgstr "Skrifttyper" #: ../data/dialogPrefs.ui.h:19 msgid "Settings for projector" msgstr "" #: ../data/dialogPrefs.ui.h:20 msgid "Aspect Ratio" msgstr "" #: ../data/dialogPrefs.ui.h:23 msgid "Text Justification" msgstr "" #: ../data/dialogPrefs.ui.h:24 msgid "Vertical Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:25 msgid "Horizontal Text Location" msgstr "" #: ../data/dialogPrefs.ui.h:26 msgid "Song information location" msgstr "" #: ../data/dialogPrefs.ui.h:27 msgid "Top only" msgstr "" #: ../data/dialogPrefs.ui.h:28 msgid "Name at top, Details at bottom" msgstr "" #: ../data/dialogPrefs.ui.h:29 msgid "Bottom only" msgstr "" #: ../data/dialogPrefs.ui.h:30 msgid "Song infomation pages" msgstr "" #: ../data/dialogPrefs.ui.h:31 msgid "All pages" msgstr "" #: ../data/dialogPrefs.ui.h:32 msgid "First page" msgstr "" #: ../data/dialogPrefs.ui.h:33 msgid "Vertical Margin" msgstr "" #: ../data/dialogPrefs.ui.h:34 msgid "2" msgstr "" #: ../data/dialogPrefs.ui.h:35 msgid "Horizontal Margin" msgstr "" #: ../data/dialogPrefs.ui.h:36 msgid "Projector layout" msgstr "" #: ../data/dialogPrefs.ui.h:37 msgid "Default Background" msgstr "" #: ../data/dialogPrefs.ui.h:38 msgid "Default Transition" msgstr "Standard overgang" #: ../data/dialogPrefs.ui.h:39 msgid "Ignore Mouse Clicks" msgstr "" #: ../data/dialogPrefs.ui.h:40 msgid "Window offset" msgstr "" #: ../data/dialogPrefs.ui.h:41 msgid "Projector options" msgstr "" #: ../data/dialogPrefs.ui.h:42 msgid "Various defaults" msgstr "" #: ../data/dialogPrefs.ui.h:43 msgid "Loop pages" msgstr "" #: ../data/dialogPrefs.ui.h:44 msgid "Expand items when added to playlist" msgstr "" #: ../data/dialogPrefs.ui.h:45 msgid "Audit Songs" msgstr "" #: ../data/dialogPrefs.ui.h:46 msgid "Dynamic Preview" msgstr "" #: ../data/dialogPrefs.ui.h:47 msgid "Miniview" msgstr "" #: ../data/dialogPrefs.ui.h:48 msgid "Dual Head" msgstr "" #: ../data/dialogPrefs.ui.h:49 msgid "Advanced" msgstr "Avanceret" #: ../data/dialogPrefs.ui.h:53 ../data/windowMain.ui.h:40 msgid "Bible" msgstr "Bibel" #: ../data/dialogPrefs.ui.h:54 msgid "Special items that will be first in lists" msgstr "" #: ../data/dialogPrefs.ui.h:56 ../data/windowMain.ui.h:60 msgid "Images" msgstr "" #: ../data/dialogPrefs.ui.h:57 ../data/windowMain.ui.h:58 msgid "Backgrounds" msgstr "Baggrunde" #: ../data/dialogPrefs.ui.h:58 msgid "Today's Announcements" msgstr "" #: ../data/dialogPrefs.ui.h:59 msgid "Defaults" msgstr "" #: ../data/dialogPrefs.ui.h:60 msgid "Recovery Options" msgstr "" #: ../data/dialogPrefs.ui.h:61 msgid "Backup Database" msgstr "Backup Database" #: ../data/dialogPrefs.ui.h:62 msgid "Restore Database" msgstr "" #: ../data/dialogPrefs.ui.h:63 msgid "Backup/Restore" msgstr "" #: ../data/dialogSearch.ui.h:1 ../data/windowMain.ui.h:11 msgid "Advanced Search" msgstr "Avanceret søgning" #: ../data/dialogSearch.ui.h:2 msgid "Search Lyrics" msgstr "" #: ../data/dialogSearch.ui.h:3 ../data/windowMain.ui.h:48 msgid "Search" msgstr "" #: ../data/dialogSearch.ui.h:5 ../data/windowMain.ui.h:53 msgid "Add to playlist" msgstr "Tilføj til afspilningsliste" #: ../data/dialogSelectSongs.ui.h:1 msgid "Select songs to import" msgstr "" #: ../data/dialogSelectSongs.ui.h:2 msgid "Select All" msgstr "" #: ../data/dialogSelectSongs.ui.h:3 msgid "Unselect All" msgstr "" #: ../data/dialogWindowOffset.ui.h:1 msgid "Window Offset" msgstr "" #: ../data/dialogWindowOffset.ui.h:2 msgid "Drag this window to the projector screen" msgstr "Træk dette vindue til projektorskærmen" #: ../data/windowAbout.ui.h:1 msgid "About Lyricue" msgstr "Om Lyricue" #: ../data/windowAbout.ui.h:2 msgid "Version #VERSION#" msgstr "" #: ../data/windowAbout.ui.h:3 msgid "" "Written By:\n" "Chris Debenham & Clint Turner\n" "Website:\n" "http://www.lyricue.org/" msgstr "" #: ../data/windowAbout.ui.h:7 msgid "Thanks" msgstr "" #: ../data/windowBibleManager.ui.h:1 msgid "Bible Installer" msgstr "" #: ../data/windowBibleManager.ui.h:2 msgid "" "Select the file containing the bible you wish to import.\n" "New bibles can be downloaded from the sites below.\n" "Click the relevant button to load that site in your browser.\n" "Once downloaded come back here to install." msgstr "" #: ../data/windowBibleManager.ui.h:6 msgid "" "Sword bibles\n" "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles" msgstr "" #: ../data/windowBibleManager.ui.h:8 msgid "" "LyricueDB bibles\n" "http://www.lyricue.org/bibles" msgstr "" #: ../data/windowBibleManager.ui.h:10 msgid "Select file to install" msgstr "" #: ../data/windowBook.ui.h:1 msgid "Choose a Book" msgstr "Vælg en bog" #: ../data/windowBook.ui.h:2 msgid "Genesis" msgstr "" #: ../data/windowBook.ui.h:3 msgid "Exodus" msgstr "Anden Mosebog" #: ../data/windowBook.ui.h:4 msgid "Leviticus" msgstr "" #: ../data/windowBook.ui.h:5 msgid "Numbers" msgstr "" #: ../data/windowBook.ui.h:6 msgid "Deuteronomy" msgstr "Femte Mosebog" #: ../data/windowBook.ui.h:7 msgid "Joshua" msgstr "" #: ../data/windowBook.ui.h:8 msgid "Judges" msgstr "" #: ../data/windowBook.ui.h:9 msgid "Ruth" msgstr "" #: ../data/windowBook.ui.h:10 msgid "1 Samuel" msgstr "1. Samuelsbog" #: ../data/windowBook.ui.h:11 msgid "2 Samuel" msgstr "2. Samuels bog" #: ../data/windowBook.ui.h:12 msgid "1 Kings" msgstr "1. Kongebog" #: ../data/windowBook.ui.h:13 msgid "2 Kings" msgstr "2 Kongebog" #: ../data/windowBook.ui.h:14 msgid "1 Chronicles" msgstr "1. Krønikebog" #: ../data/windowBook.ui.h:15 msgid "2 Chronicles" msgstr "2. Krønikebog" #: ../data/windowBook.ui.h:16 msgid "Ezra" msgstr "Ezras bog" #: ../data/windowBook.ui.h:17 msgid "Nehemiah" msgstr "" #: ../data/windowBook.ui.h:18 msgid "Esther" msgstr "Esters bog" #: ../data/windowBook.ui.h:19 msgid "Job" msgstr "" #: ../data/windowBook.ui.h:20 msgid "Psalms" msgstr "" #: ../data/windowBook.ui.h:21 msgid "Proverbs" msgstr "" #: ../data/windowBook.ui.h:22 msgid "Ecclesiastes" msgstr "Prædikerens bog" #: ../data/windowBook.ui.h:23 msgid "Song of Solomon" msgstr "" #: ../data/windowBook.ui.h:24 msgid "Isaiah" msgstr "Esajas bog" #: ../data/windowBook.ui.h:25 msgid "Jeremiah" msgstr "" #: ../data/windowBook.ui.h:26 msgid "Lamentations" msgstr "" #: ../data/windowBook.ui.h:27 msgid "Ezekiel" msgstr "Ezekiels bog" #: ../data/windowBook.ui.h:28 msgid "Daniel" msgstr "Daniels bog" #: ../data/windowBook.ui.h:29 msgid "Hosea" msgstr "" #: ../data/windowBook.ui.h:30 msgid "Joel" msgstr "" #: ../data/windowBook.ui.h:31 msgid "Micah" msgstr "" #: ../data/windowBook.ui.h:32 msgid "Haggai" msgstr "" #: ../data/windowBook.ui.h:33 msgid "Amos" msgstr "Amos bog" #: ../data/windowBook.ui.h:34 msgid "Obadiah" msgstr "" #: ../data/windowBook.ui.h:35 msgid "Jonah" msgstr "" #: ../data/windowBook.ui.h:36 msgid "Nahum" msgstr "" #: ../data/windowBook.ui.h:37 msgid "Habakkuk" msgstr "" #: ../data/windowBook.ui.h:38 msgid "Zephaniah" msgstr "" #: ../data/windowBook.ui.h:39 msgid "Zechariah" msgstr "" #: ../data/windowBook.ui.h:40 msgid "Malachi" msgstr "" #: ../data/windowBook.ui.h:41 msgid "Song of Songs" msgstr "" #: ../data/windowBook.ui.h:42 msgid "New Testament" msgstr "" #: ../data/windowBook.ui.h:43 msgid "Matthew" msgstr "" #: ../data/windowBook.ui.h:44 msgid "Mark" msgstr "" #: ../data/windowBook.ui.h:45 msgid "Luke" msgstr "" #: ../data/windowBook.ui.h:46 msgid "John" msgstr "" #: ../data/windowBook.ui.h:47 msgid "Acts" msgstr "Apostlenes Gerninger" #: ../data/windowBook.ui.h:48 msgid "Galatians" msgstr "Galaterbrevet" #: ../data/windowBook.ui.h:49 msgid "1 Thessalonians" msgstr "1. Thessaloniker brev" #: ../data/windowBook.ui.h:50 msgid "Romans" msgstr "" #: ../data/windowBook.ui.h:51 msgid "1 Corinthians" msgstr "1. Korinter brev" #: ../data/windowBook.ui.h:52 msgid "2 Corinthians" msgstr "2. Korinther brev" #: ../data/windowBook.ui.h:53 msgid "Ephesians" msgstr "Efeserbrevet" #: ../data/windowBook.ui.h:54 msgid "Philippians" msgstr "" #: ../data/windowBook.ui.h:55 msgid "Colossians" msgstr "Kolossenserbrevet" #: ../data/windowBook.ui.h:56 msgid "1 Timothy" msgstr "1. Timotheus brev" #: ../data/windowBook.ui.h:57 msgid "2 Thessalonians" msgstr "2. Thessaloniker brev" #: ../data/windowBook.ui.h:58 msgid "2 Timothy" msgstr "2. Timotheus brev" #: ../data/windowBook.ui.h:59 msgid "Titus" msgstr "" #: ../data/windowBook.ui.h:60 msgid "Philemon" msgstr "" #: ../data/windowBook.ui.h:61 msgid "Hebrews" msgstr "" #: ../data/windowBook.ui.h:62 msgid "James" msgstr "" #: ../data/windowBook.ui.h:63 msgid "1 Peter" msgstr "1. Peters brev" #: ../data/windowBook.ui.h:64 msgid "2 Peter" msgstr "2. Peters brev" #: ../data/windowBook.ui.h:65 msgid "1 John" msgstr "1. Johannes brev" #: ../data/windowBook.ui.h:66 msgid "2 John" msgstr "2. Johannes brev" #: ../data/windowBook.ui.h:67 msgid "3 John" msgstr "3. Johannes brev" #: ../data/windowBook.ui.h:68 msgid "Jude" msgstr "" #: ../data/windowBook.ui.h:69 msgid "Revelation" msgstr "" #: ../data/windowBook.ui.h:71 msgid "Old Testament" msgstr "" #: ../data/windowEditSong.ui.h:1 msgid "Add new Song" msgstr "Tilføj ny sang" #: ../data/windowEditSong.ui.h:2 ../data/windowMain.ui.h:2 msgid "File" msgstr "" #: ../data/windowEditSong.ui.h:3 msgid "Import" msgstr "Importer" #: ../data/windowEditSong.ui.h:4 msgid "Export" msgstr "Eksporter" #: ../data/windowEditSong.ui.h:6 msgid "Add Page" msgstr "Tilføj side" #: ../data/windowEditSong.ui.h:7 msgid "Remove Page" msgstr "" #: ../data/windowEditSong.ui.h:8 msgid "Preview Page" msgstr "" #: ../data/windowEditSong.ui.h:9 msgid "Insert preset Copyright" msgstr "" #: ../data/windowEditSong.ui.h:10 ../data/windowMain.ui.h:41 msgid "Help" msgstr "" #: ../data/windowEditSong.ui.h:12 msgid "The title of the song" msgstr "" #: ../data/windowEditSong.ui.h:14 msgid "The songbook name" msgstr "" #: ../data/windowEditSong.ui.h:16 msgid "The song number within the book" msgstr "" #: ../data/windowEditSong.ui.h:18 msgid "Who wrote this" msgstr "" #: ../data/windowEditSong.ui.h:19 msgid "Keywords" msgstr "" #: ../data/windowEditSong.ui.h:20 msgid "Topics of song" msgstr "" #: ../data/windowEditSong.ui.h:21 msgid "Copyright" msgstr "Ophavsret" #: ../data/windowEditSong.ui.h:22 msgid "Any copyright information" msgstr "Copyright information" #: ../data/windowEditSong.ui.h:23 msgid "Audit Song" msgstr "" #: ../data/windowEditSong.ui.h:25 ../data/windowMain.ui.h:99 msgid "Preview" msgstr "" #: ../data/windowEditSong.ui.h:26 msgid "Save and Close" msgstr "" #: ../data/windowMain.ui.h:3 msgid "Manage Images" msgstr "" #: ../data/windowMain.ui.h:4 msgid "Manage Background" msgstr "" #: ../data/windowMain.ui.h:5 msgid "Clean Database" msgstr "" #: ../data/windowMain.ui.h:6 msgid "Import Songlist" msgstr "" #: ../data/windowMain.ui.h:7 msgid "Export Songlist" msgstr "" #: ../data/windowMain.ui.h:8 ../data/windowProfileManager.ui.h:5 msgid "Profiles" msgstr "" #: ../data/windowMain.ui.h:10 msgid "Add Song" msgstr "" #: ../data/windowMain.ui.h:12 msgid "Edit Song" msgstr "" #: ../data/windowMain.ui.h:13 msgid "Delete Song" msgstr "" #: ../data/windowMain.ui.h:14 msgid "Refresh List" msgstr "" #: ../data/windowMain.ui.h:15 msgid "Manage Profiles" msgstr "" #: ../data/windowMain.ui.h:16 msgid "Configuration Wizard" msgstr "" #: ../data/windowMain.ui.h:17 msgid "User Administration" msgstr "" #: ../data/windowMain.ui.h:19 msgid "Select Playlist" msgstr "" #: ../data/windowMain.ui.h:20 msgid "Clear Playlist" msgstr "" #: ../data/windowMain.ui.h:21 msgid "Refresh Playlist" msgstr "" #: ../data/windowMain.ui.h:22 msgid "Clear Image Associations" msgstr "" #: ../data/windowMain.ui.h:23 msgid "Invert Line Display" msgstr "" #: ../data/windowMain.ui.h:24 msgid "Export Playlist as PDF" msgstr "" #: ../data/windowMain.ui.h:25 msgid "Playlist Item" msgstr "" #: ../data/windowMain.ui.h:26 msgid "Add from Available" msgstr "" #: ../data/windowMain.ui.h:27 msgid "Add Image" msgstr "" #: ../data/windowMain.ui.h:28 msgid "Add File" msgstr "Tilføj fil" #: ../data/windowMain.ui.h:29 msgid "Add Directory" msgstr "" #: ../data/windowMain.ui.h:30 msgid "Add DVD Video" msgstr "" #: ../data/windowMain.ui.h:31 msgid "Remove from Playlist" msgstr "" #: ../data/windowMain.ui.h:33 ../data/windowTray.ui.h:4 msgid "Previous Page" msgstr "" #: ../data/windowMain.ui.h:34 ../data/windowTray.ui.h:5 msgid "Next Page" msgstr "" #: ../data/windowMain.ui.h:35 msgid "Display Now" msgstr "" #: ../data/windowMain.ui.h:36 msgid "Blank Display" msgstr "" #: ../data/windowMain.ui.h:37 msgid "Clear Text" msgstr "Ryd tekst" #: ../data/windowMain.ui.h:38 msgid "Live Video" msgstr "" #: ../data/windowMain.ui.h:39 msgid "Applications" msgstr "" #: ../data/windowMain.ui.h:42 msgid "Gather troubleshooting info" msgstr "" #: ../data/windowMain.ui.h:43 msgid "Prev. Page" msgstr "" #: ../data/windowMain.ui.h:44 msgid "Next Point" msgstr "" #: ../data/windowMain.ui.h:45 msgid "Blank Screen" msgstr "Blank skærm" #: ../data/windowMain.ui.h:46 msgid "Reshow" msgstr "" #: ../data/windowMain.ui.h:47 msgid "Start Display" msgstr "" #: ../data/windowMain.ui.h:49 msgid "Search the songlist directly" msgstr "" #: ../data/windowMain.ui.h:50 msgid "Clear Search Field" msgstr "Ryd søgefeltet" #: ../data/windowMain.ui.h:51 msgid "New" msgstr "" #: ../data/windowMain.ui.h:52 msgid "Add the selected song to the playlist" msgstr "Tilføj den valgte sang til afspilningslisten" #: ../data/windowMain.ui.h:54 msgid "Songs" msgstr "" #: ../data/windowMain.ui.h:55 msgid "Current" msgstr "Nuværende" #: ../data/windowMain.ui.h:56 msgid "Previous" msgstr "" #: ../data/windowMain.ui.h:57 msgid "Background preview" msgstr "Forhåndsvisning af baggrund" #: ../data/windowMain.ui.h:59 msgid "Add to Playlist" msgstr "Tilføj til afspilningsliste" #: ../data/windowMain.ui.h:61 msgid "Files" msgstr "Filer" #: ../data/windowMain.ui.h:62 msgid "Enter Verse to display" msgstr "Skriv vers der skal vises" #: ../data/windowMain.ui.h:63 msgid "<" msgstr "<" #: ../data/windowMain.ui.h:64 msgid ">" msgstr ">" #: ../data/windowMain.ui.h:65 msgid "Add these verses to the playlist" msgstr "Tilføj disse vers til afspilningslisten" #: ../data/windowMain.ui.h:66 msgid "Show Now" msgstr "" #: ../data/windowMain.ui.h:67 msgid "Show" msgstr "" #: ../data/windowMain.ui.h:68 msgid "Autoshow" msgstr "Autoshow" #: ../data/windowMain.ui.h:72 msgid "Slide Text" msgstr "" #: ../data/windowMain.ui.h:73 msgid "Rotate Text" msgstr "" #: ../data/windowMain.ui.h:74 msgid "Random" msgstr "" #: ../data/windowMain.ui.h:75 msgid "In Direction" msgstr "" #: ../data/windowMain.ui.h:76 msgid "Out Direction" msgstr "" #: ../data/windowMain.ui.h:77 msgid "Rotate Direction" msgstr "" #: ../data/windowMain.ui.h:78 msgid "X-Axis" msgstr "" #: ../data/windowMain.ui.h:79 msgid "Y-Axis" msgstr "" #: ../data/windowMain.ui.h:80 msgid "Z-Axis" msgstr "" #: ../data/windowMain.ui.h:81 msgid "Apply to Selected" msgstr "Anvend på valgte" #: ../data/windowMain.ui.h:82 msgid "Apply to Playlist" msgstr "Anvend på afspilningsliste" #: ../data/windowMain.ui.h:83 msgid "Transitions" msgstr "" #: ../data/windowMain.ui.h:84 msgid "No Playlist loaded" msgstr "" #: ../data/windowMain.ui.h:85 msgid "Previews" msgstr "" #: ../data/windowMain.ui.h:86 msgid "Choose Your Playlist" msgstr "Vælg din afspilningsliste" #: ../data/windowMain.ui.h:87 msgid "Load" msgstr "" #: ../data/windowMain.ui.h:89 msgid "Rename" msgstr "" #: ../data/windowMain.ui.h:90 msgid "Copy" msgstr "" #: ../data/windowMain.ui.h:92 msgid "Move the current item down" msgstr "" #: ../data/windowMain.ui.h:93 msgid "Move Down" msgstr "" #: ../data/windowMain.ui.h:94 msgid "Move the current item up" msgstr "" #: ../data/windowMain.ui.h:95 msgid "Move Up" msgstr "" #: ../data/windowMain.ui.h:96 msgid "Remove the current item from the playlist" msgstr "" #: ../data/windowMain.ui.h:97 msgid "Remove" msgstr "" #: ../data/windowMain.ui.h:98 msgid "Add Sublist" msgstr "Tilføj underliste" #: ../data/windowMain.ui.h:100 msgid "0:00/0:00" msgstr "" #: ../data/windowMain.ui.h:101 msgid "Blur" msgstr "Udvisk" #: ../data/windowMain.ui.h:102 msgid "Quick Update" msgstr "" #: ../data/windowMain.ui.h:103 msgid "Save" msgstr "" #: ../data/windowMain.ui.h:104 msgid "Save Copy" msgstr "" #: ../data/windowMain.ui.h:106 msgid "Duplicate Item" msgstr "" #: ../data/windowProfileManager.ui.h:1 msgid "Profile Manager" msgstr "" #: ../data/windowProfileManager.ui.h:2 msgid "Manage Available Profiles" msgstr "" #: ../data/windowProfileManager.ui.h:3 msgid "Remove Profile" msgstr "" #: ../data/windowProfileManager.ui.h:4 msgid "Create Profile" msgstr "" #: ../data/windowProfileManager.ui.h:6 msgid "Assign profile to hosts" msgstr "" #: ../data/windowProfileManager.ui.h:7 msgid "Hosts" msgstr "" #: ../data/windowTray.ui.h:1 msgid "You should never read this" msgstr "" #: ../data/windowTray.ui.h:2 msgid "Previous Song" msgstr "" #: ../data/windowTray.ui.h:3 msgid "Next Song" msgstr "" #: ../data/windowTray.ui.h:6 msgid "Clear Screen" msgstr "Ryd skærmen" lyricue-4.0.12/sample_song.xml0000664000000000000000000000145213053456656013212 0ustar Amazing Grace John Newton The Hymnal 0 Amazing grace! How sweet the sound that saved a wretch like me! I once was lost but now am found, Was blind but now I see 'Twas grace that taught my heart to fear, and grace my fears relieved; How precious did that grace appear the hour I first believed! Through many dangers, toils and snares I have already come; 'Tis grace hath brought me safe thus far, and grace will lead me home. When we've been there ten thousand years, bright shining as the sun, We've no less days to sing God's praise then when we'd first begun. lyricue-4.0.12/AUTHORS0000664000000000000000000000011013053456656011217 0ustar Chris Debenham Clint Turner lyricue-4.0.12/NEWS0000664000000000000000000002750113053456656010663 0ustar ----- Version 3.0.25 - 12/12/2010 ----- Fix video playback related crash ----- Version 3.0.23 - 6/12/2010 ----- Hide mouse cursor in display after three seconds of no motion Fix video looping for playlist items Fix geometry override handling when launching via lyricue ----- Version 3.0.22 - 26/11/2010 ----- Default hostname should be 'localhost' Force CLUTTER_DISABLE_MIPMAPPED_TEXT and unset LIBGL_ALWAYS_INDIRECT ----- Version 3.0.21 - 14/11/2010 ----- lyricue_display was ignoring database given on commandline ----- Version 3.0.20 - 7/11/2010 ----- Lyricue should quote passwords in mysql command (LP#668770) * Playback control not working (LP#668443) * Fix handling of & in text display * Lyricue 3 miniview does not work (LP#640936) * Cannot use page forward or back when showing an image (LP#665498) ----- Version 3.0.19 - 29/10/2010 ----- Work on blank screen behaviour (LP#662311) ----- Version 3.0.18 - 28/10/2010 ----- Make 'OK' be default action in combo/entry dialogs (LP#665494) Add fade/blur effect for backgrounds Work on getting aspect ratio displayed right for backgrounds ----- Version 3.0.17 - 24/10/2010 ----- Fix Crash when playing videos ----- Version 3.0.15 - 23/10/2010 ----- Fix missing break in mouse-click handling (LP#664931) Fix lyricue_display distorts images (LP#664921) ----- Version 3.0.15 - 22/10/2010 ----- Bug fixes: Fix lyricue_display ignores font colour setting on songs (LP#664929) Add mouse-click handling (LP#664931) Fix line-wrap for preview (LP#662893) Fix preview window display Remove multiple Load/Close Lyricue Display items in menu ----- Version 3.0.12 - 11/10/2010 ----- Major release Projector portion re-written from scratch in C Preferences stored in the database Preview for editting songs ----- Version 2.3.0 - 1/7/2010 ----- Minor release Major features Thumbnailing/previews for images and videos Much work and new preferences stuff to help ensure server displays on correct screen Video controls for when playing media Minor features Blank/Clear text now are toggles Updates to key bindings in server Separate sword and DB bibles in bible menu (LP#593010) Make advanced search look at artist and keywords as well 'Add File' dialog - now with multiselect, previews and dbl-click Migrate FileSelection dialogs to more featureful FileChooser dialogs Update first-run wizard to allow setting separate DB/projector host (LP#540062 ) Make preview/quickview stuff work based on cursor selection rather than pure events (means keyboard control works better in playlist) Make lyricue_server go to next song once it reaches end of song Bugfixes Lots of work on handling non-latin characters throughout lyricue Fix slide transitions so text no longer overlaps Fix adding/importing songs Many more - too many to note here ----- Version 2.2.0 - 31/3/2010 ----- IMPORTANT: Remove GnomeCanvas Support Show preview when clicking on a song in the left pane Update manpages Bug fixes: * Fix LP#551551 - XML import/export fails when path contains blanks * Multiple fixes for clutter < 1.0 * Make clean_database run on load * Fix server poke so it works if KJV not installed * Restrict bible navigator to verses which actually exist ----- Version 2.1.0 - 7/3/2010 ----- Allow pages to be renamed and that name to show in the playlist Fix bible import Add OSD scroller Multiple UTF8 fixes Updated spanish translation Allow font colour associations with on-disk backgrounds Cache image/background thumbnails in database Works with Clutter 1.0 Allow multiple bible translations in the bibleDb database Multiple performance improvements Drag-n-drop re-ordering of pages Too many bug fixes to note ----- Version 2.0.0 - 3/8/2009 ----- Export and Import single songs from xmlz format Export and Import multiple songs at once from xmlz format Full German translation Better support for UTF-8 characterset Better handling of multi-monitor setups First-run/Configuration Wizard Allow for multi-select in songlist Major UI cleanup including: Moving many dialogs to tabs in the main interface Re-worked transitions tab Playlist selector now in replaces playlist view when none is loaded ----- Version 1.9.10 - 1/7/2009 ----- Drag'n'Drop backgrounds First-run wizard to help with initial setup Much better automatic handling of multiple monitors Preview displays now look/scale better ----- Version 1.9.9 - 9/6/2009 ----- New clutter-based server (allows OpenGL accelerated transitions) Major UI re-working Presentation import Video display Webcam display Work better with non-english bibles Background transitions Songbeamer file import ----- Version 1.9.8 - 3/10/2008 ----- Fix aspect-ratio handling of images Many bug-fixes to bible-handling Fix line on top and left of lyricue_server screen ----- Version 1.9.7 - 12/11/2007 ----- Fixes to SQLite handling Add 'Add Directory' function to import entire directory of images Changed default to give full access if no permissions set in access.conf Change background association handling Disable X-server screensaver when lyricue_server runs Allow disabling of Tray Icons Change base database to be mostly empty other than some samples ----- Version 1.9.6 - 7/07/2007 ----- Fixes to mediaDb creation Add drag-n-drop for image handling ----- Version 1.9.5.1 - 21/04/2007 ----- Fix invalid SQL statement when auditing ----- Version 1.9.5 - 20/04/2007 ----- Allow text to be at top, centre or bottom of screen Fix song metadata for time entered/edited Fix text/shadow colour handling Fix Sword bible listing ----- Version 1.9.4 - unreleased ----- Better handling of running interface/server/database on different machines Import CCLI, SongSelect and OPW songs Bugfixes for playlist handling Initial support for associating text colours with backgrounds Updated packaing Spanish translation ----- Version 1.9.3 - 19/06/2006 ----- Bible Navigator UTF-8 for bibles and communications Option to turn off auditing on individual songs Option to specify first item in available songlist Option for first category shown in images/background lists New preview/miniview method Experimental transparent server Option for blank-screen button to clear text or reset to default bg French translation Quick-search also checks first line of songs Blank-page button can set BG at same time Resizable bottom pane Trayicons for quick access to functions Multiselect for image move/delete/add One-more-verse button in bible navigator Active bible navigator Better handling of bible names Install/upgrade of databases handled by interface ----- Version 1.9.2 - 17/03/2005 ----- Moved media to DB Moved all lds dirs to lyricue (ie /usr/share/lds is now /usr/share/lyricue Debian packaging Add/Rename/Delete items in mediaDb Fast non-canvas server Gnomecanvas, Gtk2-spell and gettext now all optional New utility lyricue-remote Support for bibles from Sword project ----- Version 1.9.1 - 11/08/2004 ----- Preview working Preview/miniview built into interface Fix double-clicking spell-check Fix double-clicking bg directory buttons If Background is set for song-header it is applied to all pages Re-design playlist so transitions/backgrounds listed as sub-items What was expanded, stays expanded after playlist refresh Solid colours can be made by creating an empty file named .bg where is any valid x-colour name Speedups in interface due to simpler scaling Sublists working once again Supports latin-extended characters (ie german chars) ----- Version 1.9 - 2/05/2004 ----- * RENAMED LYRICUE * GTK2/Glade2 based Server based on gnomecanvas2 Graphical error reporting Re-wrote install script (now also handles upgrades) Spellchecking Screen transitions Text Shadow User access controls ----- Version 1.2 - 25/03/2003 ----- Changed format of playlist to handle sub-playlists Add copyright info for songs, includes presets Can allow song to loop by sending display:next_page:loop Added capability to tell server to jump to a particular page number in song Bugfix: preview works again Multiple Playlists! Can duplicate/delete pages in a playlist Mozilla version of server (experimental) Supports (sort-of) Xinerama Preferences dialog (replaces preferences menu items) Can tell interface to connect to remote server ----- Version 1.1.1 - 7/11/2002 ----- Bugfix for clicking background Bugfix for forgotten period in server ----- Version 1.1 - 26/09/2002 ----- Playlist can be re-ordered interface/server can run at different resolution now. Edit lds.conf (example given) to set this feature Can add a background the the playlist Bugfix: Sorting/searching the available song list stays around after refresh Bugfix: Directories in the image/bg directories won't crash the interface now Bugfix: Removed superflous newlines when displaying lyrics lds.conf, images and backgrounds moved to user home directory Config is now in ~/.lds/config Images are now in ~/.lds/images Backgrounds are now in ~/.lds/backgrounds The first time the interface is run it automatically sets you up with symlinks to the global directories. Change this afterward if you so desire ----- Version 1.0 - 27/08/2002 ----- Cleaned playlist Made imagelists scrollable Fixed minor bugs RELEASED 1.0! ----- Version 0.99 - 26/07/2002 ----- Bumped up version number in preperation for 1.0 Multiple select for songlist Splash screen Export function Status bar in interface Added Drag'n'Drop to playlist Fixed font/colour selecting crash in server Search song contents function Drag'n'drop from advanced search to playlist ----- Version 0.19 - 20/06/2002 ----- Multiple sort options for songlist HTML server option Invert playlist lyric display (ie. show last line of verse rather than first) Clear playlist menu item Communication is now socket based rather than fifo ----- Version 0.18 - 06/05/2002 ----- Fixed context menus Added ability to add images to playlist Add Honourize function Start of bible selector ----- Version 0.17 - 14/02/2002 ----- Fixed single-verse bug Added lots of debugging lines Added ability to turn of background stuff for the Imlib-challenged ----- Version 0.16 - 01/02/2002 ----- Added applications menu Menu re-org double-click song to add to playlist Misc bugfixes ----- Version 0.15 - 25/01/2002 ----- Fixed footer when no artist given Mucho doco changes Added about dialog ----- Version 0.14 - 18/01/2002 ----- Added backdrop chooser to bottom of main screen Imported into sourceforge ----- Version 0.13 - 11/01/2002 ----- Added import song function Added ability to print list of available songs ----- Version 0.12 ----- Fixed non-unique songid error Made wrapping work for bible verses Smarter paging for bible verses Fix for items being added multiple times to backdrop chooser Added search by name function ----- Version 0.11 ----- Remove window decorations Better error handling Changable font colours ----- Version 0.10 ----- Changable backdrops for screen ----- Version 0.9.1 ----- Click on column to change sort order Change workings of add verse "written by" doesn't show if no artist is specified Added "Today's Announcements" to always be at top of available songs ----- Version 0.9 ----- Fixed bug in playlist deletion preview fixed available songs list refreshes after adding/deleting a song ----- Version 0.8 ----- Double click of line in playlist will display it Text now white on black in lyric_server Screen blank now implemented Update install file ----- Version 0.7 ----- Onscreen format of playlist changed to tree format Bible verse format (screen and db) changed to have 2 verses per screen Keyboard control of lyric_server.pl Moving forward/backward across songs now works Fixed edit song screen ----- Version 0.6 ----- Verses now work in gtk interface ----- Version 0.5 ----- Can edit fonts, and do all the old one could do ----- Version 0.4 ----- Re-wrote to use perl-gtk ----- Version 0.3 ----- Verses now work if all verses in same chapter ----- Version 0.2 ----- Preview mode bible verses ----- Mon Sep 10 16:42:45 EST 2001 - Version 0.1 ----- Initial release Base feature set working lyricue-4.0.12/m4/0000775000000000000000000000000013053456657010500 5ustar lyricue-4.0.12/m4/lt~obsolete.m40000664000000000000000000001377413053456657013330 0ustar # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software # Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) lyricue-4.0.12/m4/ltversion.m40000664000000000000000000000127313053456657012772 0ustar # ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # @configure_input@ # serial 4179 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.6]) m4_define([LT_PACKAGE_REVISION], [2.4.6]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.6' macro_revision='2.4.6' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) lyricue-4.0.12/m4/libtool.m40000664000000000000000000112617113053456657012417 0ustar # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl # Copyright (C) 2014 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . ]) # serial 58 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_PREPARE_CC_BASENAME # ----------------------- m4_defun([_LT_PREPARE_CC_BASENAME], [ # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in @S|@*""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } ])# _LT_PREPARE_CC_BASENAME # _LT_CC_BASENAME(CC) # ------------------- # It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, # but that macro is also expanded into generated libtool script, which # arranges for $SED and $ECHO to be set by different means. m4_defun([_LT_CC_BASENAME], [m4_require([_LT_PREPARE_CC_BASENAME])dnl AC_REQUIRE([_LT_DECL_SED])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl func_cc_basename $1 cc_basename=$func_cc_basename_result ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN ## ------------------------------------- ## ## Accumulate code for creating libtool. ## ## ------------------------------------- ## # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the 'libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) ## ------------------------ ## ## FIXME: Eliminate VARNAME ## ## ------------------------ ## # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to 'config.status' so that its # declaration there will have the same value as in 'configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags='_LT_TAGS'dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into 'config.status', and then the shell code to quote escape them in # for loops in 'config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ '$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test 0 != $[#] do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try '$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 _LT_COPYING _LT_LIBTOOL_TAGS # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE _LT_PREPARE_MUNGE_PATH_LIST _LT_PREPARE_CC_BASENAME # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS=$save_LDFLAGS ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; 10.[[012]][[,.]]*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test yes = "$lt_cv_ld_force_load"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if([$1], [CXX], [ if test yes != "$lt_cv_apple_cc_single_mod"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script that will find a shell with a builtin # printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], [Search for dependent libraries within DIR (or the compiler's sysroot if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS ]) if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n "$lt_cv_sys_max_cmd_len"; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen=shl_load], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen=dlopen], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) ]) ]) ]) ]) ]) ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links=nottested if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test no = "$hard_links"; then AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_PREPARE_MUNGE_PATH_LIST # --------------------------- # Make sure func_munge_path_list() is defined correctly. m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], [[# func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x@S|@2 in x) ;; *:) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" ;; x:*) eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; *::*) eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" ;; *) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; esac } ]])# _LT_PREPARE_PATH_LIST # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown AC_ARG_VAR([LT_SYS_LIBRARY_PATH], [User-defined run-time library search path.]) case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a[(]lib.so.V[)]' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], [Detected run-time system search path for libraries]) _LT_DECL([], [configure_time_lt_sys_library_path], [2], [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$1"; then lt_cv_path_MAGIC_CMD=$ac_dir/"$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac]) MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], [if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi]) rm -f conftest.i conftest2.i conftest.out]) ])# _LT_PATH_DD # _LT_CMD_TRUNCATE # ---------------- # find command to truncate a binary pipe m4_defun([_LT_CMD_TRUNCATE], [m4_require([_LT_PATH_DD]) AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], [printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) _LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], [Command to truncate a binary pipe]) ])# _LT_CMD_TRUNCATE # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_MAGIC_METHOD], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) AC_CACHE_CHECK([how to recognize dependent libraries], lt_cv_deplibs_check_method, [lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[[4-9]]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[[45]]*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi]) if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # _LT_DLL_DEF_P([FILE]) # --------------------- # True iff FILE is a Windows DLL '.def' file. # Keep in sync with func_dll_def_p in the libtool script AC_DEFUN([_LT_DLL_DEF_P], [dnl test DEF = "`$SED -n dnl -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl -e q dnl Only consider the first "real" line $1`" dnl ])# _LT_DLL_DEF_P # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM=-lm) ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([nm_interface], [lt_cv_nm_interface], [1], [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS=$save_LDFLAGS]) if test yes = "$lt_cv_irix_exported_symbol"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi _LT_TAGVAR(link_all_deplibs, $1)=no else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(ld_shlibs, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; osf3*) if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test yes = "$GCC"; then wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test yes,yes = "$GCC,$enable_shared"; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC=$CC AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report what library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC=$lt_save_CC ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test yes = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GXX"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ func_to_tool_file "$lt_outputfile"~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(GCC, $1)=$GXX _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case @S|@2 in .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test x-L = "$p" || test x-R = "$p"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test no = "$pre_test_object_deps_done"; then case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)=$prev$p else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$G77 _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code=$lt_simple_compile_test_code # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f "$lt_ac_sed" && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test 10 -lt "$lt_ac_count" && break lt_ac_count=`expr $lt_ac_count + 1` if test "$lt_ac_count" -gt "$lt_ac_max"; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS lyricue-4.0.12/m4/ltsugar.m40000664000000000000000000001044013053456657012422 0ustar # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59, which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) lyricue-4.0.12/m4/ltoptions.m40000664000000000000000000003426213053456657013004 0ustar # Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 8 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option '$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl 'shared' nor 'disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], [_LT_WITH_AIX_SONAME([aix])]) ]) ])# _LT_SET_OPTIONS ## --------------------------------- ## ## Macros to handle LT_INIT options. ## ## --------------------------------- ## # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the 'shared' and # 'disable-shared' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the 'static' and # 'disable-static' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the 'fast-install' # and 'disable-fast-install' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_AIX_SONAME([DEFAULT]) # ---------------------------------- # implement the --with-aix-soname flag, and support the `aix-soname=aix' # and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT # is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. m4_define([_LT_WITH_AIX_SONAME], [m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[[5-9]]*,yes) AC_MSG_CHECKING([which variant of shared library versioning to provide]) AC_ARG_WITH([aix-soname], [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], [case $withval in aix|svr4|both) ;; *) AC_MSG_ERROR([Unknown argument to --with-aix-soname]) ;; esac lt_cv_with_aix_soname=$with_aix_soname], [AC_CACHE_VAL([lt_cv_with_aix_soname], [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) with_aix_soname=$lt_cv_with_aix_soname]) AC_MSG_RESULT([$with_aix_soname]) if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac _LT_DECL([], [shared_archive_member_spec], [0], [Shared archive member basename, for filename based shared library versioning on AIX])dnl ])# _LT_WITH_AIX_SONAME LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. # MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac], [pic_mode=m4_default([$1], [default])]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ## ----------------- ## ## LTDL_INIT Options ## ## ----------------- ## m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) lyricue-4.0.12/m4/intltool.m40000664000000000000000000002636113053456657012616 0ustar ## intltool.m4 - Configure intltool for the target system. -*-Shell-script-*- ## Copyright (C) 2001 Eazel, Inc. ## Author: Maciej Stachowiak ## Kenneth Christiansen ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ## ## As a special exception to the GNU General Public License, if you ## distribute this file as part of a program that contains a ## configuration script generated by Autoconf, you may include it under ## the same distribution terms that you use for the rest of that program. dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) # serial 42 IT_PROG_INTLTOOL AC_DEFUN([IT_PROG_INTLTOOL], [ AC_PREREQ([2.50])dnl AC_REQUIRE([AM_NLS])dnl case "$am__api_version" in 1.[01234]) AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool]) ;; *) ;; esac INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` if test -n "$1"; then AC_MSG_CHECKING([for intltool >= $1]) AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found]) test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.]) fi AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update]) AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge]) AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract]) if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.]) fi if test -z "$AM_DEFAULT_VERBOSITY"; then AM_DEFAULT_VERBOSITY=1 fi AC_SUBST([AM_DEFAULT_VERBOSITY]) INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' INTLTOOL__v_MERGE_0='@echo " ITMRG " [$]@;' AC_SUBST(INTLTOOL_V_MERGE) AC_SUBST(INTLTOOL__v_MERGE_) AC_SUBST(INTLTOOL__v_MERGE_0) INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' intltool__v_merge_options_0='-q' AC_SUBST(INTLTOOL_V_MERGE_OPTIONS) AC_SUBST(intltool__v_merge_options_) AC_SUBST(intltool__v_merge_options_0) INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< [$]@' INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< [$]@' else INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.[$][$]RANDOM && mkdir [$][$]_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u [$][$]_it_tmp_dir $< [$]@ && rmdir [$][$]_it_tmp_dir' fi INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' _IT_SUBST(INTLTOOL_DESKTOP_RULE) _IT_SUBST(INTLTOOL_DIRECTORY_RULE) _IT_SUBST(INTLTOOL_KEYS_RULE) _IT_SUBST(INTLTOOL_PROP_RULE) _IT_SUBST(INTLTOOL_OAF_RULE) _IT_SUBST(INTLTOOL_PONG_RULE) _IT_SUBST(INTLTOOL_SERVER_RULE) _IT_SUBST(INTLTOOL_SHEET_RULE) _IT_SUBST(INTLTOOL_SOUNDLIST_RULE) _IT_SUBST(INTLTOOL_UI_RULE) _IT_SUBST(INTLTOOL_XAM_RULE) _IT_SUBST(INTLTOOL_KBD_RULE) _IT_SUBST(INTLTOOL_XML_RULE) _IT_SUBST(INTLTOOL_XML_NOMERGE_RULE) _IT_SUBST(INTLTOOL_CAVES_RULE) _IT_SUBST(INTLTOOL_SCHEMAS_RULE) _IT_SUBST(INTLTOOL_THEME_RULE) _IT_SUBST(INTLTOOL_SERVICE_RULE) _IT_SUBST(INTLTOOL_POLICY_RULE) # Check the gettext tools to make sure they are GNU AC_PATH_PROG(XGETTEXT, xgettext) AC_PATH_PROG(MSGMERGE, msgmerge) AC_PATH_PROG(MSGFMT, msgfmt) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) fi xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) fi AC_PATH_PROG(INTLTOOL_PERL, perl) if test -z "$INTLTOOL_PERL"; then AC_MSG_ERROR([perl not found]) fi AC_MSG_CHECKING([for perl >= 5.8.1]) $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 if test $? -ne 0; then AC_MSG_ERROR([perl 5.8.1 is required for intltool]) else IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` AC_MSG_RESULT([$IT_PERL_VERSION]) fi if test "x$2" != "xno-xml"; then AC_MSG_CHECKING([for XML::Parser]) if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then AC_MSG_RESULT([ok]) else AC_MSG_ERROR([XML::Parser perl module is required for intltool]) fi fi # Substitute ALL_LINGUAS so we can use it in po/Makefile AC_SUBST(ALL_LINGUAS) IT_PO_SUBDIR([po]) ]) # IT_PO_SUBDIR(DIRNAME) # --------------------- # All po subdirs have to be declared with this macro; the subdir "po" is # declared by IT_PROG_INTLTOOL. # AC_DEFUN([IT_PO_SUBDIR], [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS. dnl dnl The following CONFIG_COMMANDS should be executed at the very end dnl of config.status. AC_CONFIG_COMMANDS_PRE([ AC_CONFIG_COMMANDS([$1/stamp-it], [ if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.]) fi rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp" >"$1/stamp-it.tmp" [sed '/^#/d s/^[[].*] *// /^[ ]*$/d '"s|^| $ac_top_srcdir/|" \ "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES" ] [sed '/^POTFILES =/,/[^\\]$/ { /^POTFILES =/!d r $1/POTFILES } ' "$1/Makefile.in" >"$1/Makefile"] rm -f "$1/Makefile.tmp" mv "$1/stamp-it.tmp" "$1/stamp-it" ]) ])dnl ]) # _IT_SUBST(VARIABLE) # ------------------- # Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST # AC_DEFUN([_IT_SUBST], [ AC_SUBST([$1]) m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) ] ) # deprecated macros AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL]) # A hint is needed for aclocal from Automake <= 1.9.4: # AC_DEFUN([AC_PROG_INTLTOOL], ...) lyricue-4.0.12/autogen.sh0000775000000000000000000001075113053456656012164 0ustar #!/bin/sh # Run this to generate all the initial makefiles, etc. srcdir=`dirname $0` test -z "$srcdir" && srcdir=. DIE=0 if [ -n "$GNOME2_DIR" ]; then ACLOCAL_FLAGS="-I $GNOME2_DIR/share/aclocal $ACLOCAL_FLAGS" LD_LIBRARY_PATH="$GNOME2_DIR/lib:$LD_LIBRARY_PATH" PATH="$GNOME2_DIR/bin:$PATH" export PATH export LD_LIBRARY_PATH fi which yelp-build || { echo "You need to install yelp-tools" exit 1 } (test -f $srcdir/configure.ac) || { echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" echo " top-level package directory" exit 1 } (autoconf --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`autoconf' installed." echo "Download the appropriate package for your distribution," echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" DIE=1 } (grep "^IT_PROG_INTLTOOL" $srcdir/configure.ac >/dev/null) && { (intltoolize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`intltool' installed." echo "You can get it from:" echo " ftp://ftp.gnome.org/pub/GNOME/" DIE=1 } } (grep "^AM_PROG_XML_I18N_TOOLS" $srcdir/configure.ac >/dev/null) && { (xml-i18n-toolize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`xml-i18n-toolize' installed." echo "You can get it from:" echo " ftp://ftp.gnome.org/pub/GNOME/" DIE=1 } } (grep "^AM_PROG_LIBTOOL" $srcdir/configure.ac >/dev/null) && { (libtool --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`libtool' installed." echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" DIE=1 } } (grep "^AM_GLIB_GNU_GETTEXT" $srcdir/configure.ac >/dev/null) && { (grep "sed.*POTFILES" $srcdir/configure.ac) > /dev/null || \ (glib-gettextize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`glib' installed." echo "You can get it from: ftp://ftp.gtk.org/pub/gtk" DIE=1 } } (automake --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`automake' installed." echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" DIE=1 NO_AUTOMAKE=yes } # if no automake, don't bother testing for aclocal test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: Missing \`aclocal'. The version of \`automake'" echo "installed doesn't appear recent enough." echo "You can get automake from ftp://ftp.gnu.org/pub/gnu/" DIE=1 } if test "$DIE" -eq 1; then exit 1 fi if test -z "$*"; then echo "**Warning**: I am going to run \`configure' with no arguments." echo "If you wish to pass any to it, please specify them on the" echo \`$0\'" command line." echo fi case $CC in xlc ) am_opt=--include-deps;; esac for coin in `find $srcdir -path $srcdir/CVS -prune -o -name configure.ac -print` do dr=`dirname $coin` if test -f $dr/NO-AUTO-GEN; then echo skipping $dr -- flagged as no auto-gen else echo processing $dr ( cd $dr aclocalinclude="$ACLOCAL_FLAGS" if grep "^AM_GLIB_GNU_GETTEXT" configure.ac >/dev/null; then echo "Creating $dr/aclocal.m4 ..." test -r $dr/aclocal.m4 || touch $dr/aclocal.m4 echo "Running glib-gettextize... Ignore non-fatal messages." echo "no" | glib-gettextize --force --copy echo "Making $dr/aclocal.m4 writable ..." test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 fi if grep "^IT_PROG_INTLTOOL" configure.ac >/dev/null; then echo "Running intltoolize..." intltoolize --copy --force --automake fi if grep "^AM_PROG_XML_I18N_TOOLS" configure.ac >/dev/null; then echo "Running xml-i18n-toolize..." xml-i18n-toolize --copy --force --automake fi if grep "^AM_PROG_LIBTOOL" configure.ac >/dev/null; then if test -z "$NO_LIBTOOLIZE" ; then echo "Running libtoolize..." libtoolize --force --copy fi fi echo "Running aclocal $aclocalinclude ..." aclocal $aclocalinclude if grep "^A[CM]_CONFIG_HEADER" configure.ac >/dev/null; then echo "Running autoheader..." autoheader fi echo "Running automake --gnu $am_opt ..." automake --add-missing --gnu $am_opt echo "Running autoconf ..." autoconf ) fi done conf_flags="--enable-maintainer-mode" if test x$NOCONFIGURE = x; then echo Running $srcdir/configure $conf_flags "$@" ... $srcdir/configure $conf_flags "$@" \ && echo Now type \`make\' to compile. || exit 1 else echo Skipping configure process. fi lyricue-4.0.12/config.h.in0000664000000000000000000000421013053456657012200 0ustar /* config.h.in. Generated from configure.ac by autoheader. */ /* always defined to indicate that i18n is enabled */ #undef ENABLE_NLS /* GETTEXT package name */ #undef GETTEXT_PACKAGE /* Define to 1 if you have the `bind_textdomain_codeset' function. */ #undef HAVE_BIND_TEXTDOMAIN_CODESET /* Define to 1 if you have the `dcgettext' function. */ #undef HAVE_DCGETTEXT /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define if your file defines LC_MESSAGES. */ #undef HAVE_LC_MESSAGES /* Define to 1 if you have the header file. */ #undef HAVE_LOCALE_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION lyricue-4.0.12/TODO0000664000000000000000000000550313053456656010652 0ustar Things To Do - bugs/enhancements -------------------------------- * Bouncing ball showing which line/word to sing * multiple select for playlist (partialy done, backend exists) * Possibly even line by line display within a song... (maybe best for 2.0) * Chords Completed Items --------------- * Import a presentation as a bunch of images, set backdrop to display each. Perhaps automatically convert from ppt file to list of jpegs? * Global hotkeys - done * BUG: Don't show mysql errors on server screen * BUG: Server crashes with looping images sometimes * BUG: Switching bibles can crash server * MediaDB - add/change/delete items * BUG: Changing background overwrites text * BUG: Font colour changing doesn't apply until server restart * Colours/gradients for background * Preview window for interface * Add screen transitions * User permissions ( for song edit/delete/add etc) * Add a Checkmark next to current bible in interface * Collapsible groups. like the songs only for holding songs * Load bg's in background in interface (speed up startup) * Spell checking * choose which pages of a song will be displayed at playlist adding (new table in db for playlist within a playlist?) * Multiple playlists * Add CCLI line at bottom of songs where required (checkbox in song edit) * user dependant configuration (~/.lds/config) and images/bgs * Sorting of songs needs to stay around after songlist refresh * Add a background to the playlist whereby moving past it will change the current bg * Allow playlist re-order * make imagelists scrolled windows * Clean up playlist - (images and verses need to be displayed better) * Advanced search - search lyrics themselves * Multi bible support - done by Clint * BUG: Changing text colour does nothing until server restarts * BUG: Changing fonts kills server * add splash screen to interface * multiple select for songlist * Replace FIFO with sockets * more backdrops * Playlist item to change BG (not just temporarily) * "Clear all from playlist" Option * Sermon song at top of sort like today's ann so lds could be used for key sermon points. * Right-click menus * Fix bug when double clicking after searching - Double click replaced by menu * Add "Applications" menu that runs apps on the second display (ie for tv card, videos,server etc) * Deleting from empty playlist causes error - fixed * preview doesn't work properly until first save done - fixed * change view of available songs to use user_data rather than another coloumn to hold songid - worked-around (made id col last and small) * make available songs list after adding/deleting a song * add smarter line wrapping in bible verses * add search function * allow clicking on column to change sort order * add importing of songs from file * add about dialog * double-click on song adds it to playlist * reorganize menus lyricue-4.0.12/src/0000775000000000000000000000000013053456657010747 5ustar lyricue-4.0.12/src/i18n.h0000664000000000000000000000130113053456656011671 0ustar #ifndef __LYRICUE_INTL_H__ #define __LYRICUE_INTL_H__ #ifdef HAVE_CONFIG_H #include "config.h" #endif /* HAVE_CONFIG_H */ #ifdef ENABLE_NLS #include #define _(String) gettext(String) #ifdef gettext_noop #define N_(String) gettext_noop(String) #else #define N_(String) (String) #endif #else /* NLS is disabled */ #define _(String) (String) #define N_(String) (String) #define textdomain(String) (String) #define gettext(String) (String) #define dgettext(Domain,String) (String) #define dcgettext(Domain,String,Type) (String) #define bindtextdomain(Domain,Directory) (Domain) #define bind_textdomain_codeset(Domain,Codeset) (Codeset) #endif /* ENABLE_NLS */ #endif /* __LYRICUE_INTL_H__ */ lyricue-4.0.12/src/utils.h0000664000000000000000000000150413053456656012257 0ustar /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA */ void l_debug(const gchar *text, ...); gchar * parse_special (const gchar * text); void close_log(); lyricue-4.0.12/src/lyricue0000775000000000000000000140233513053456656012360 0ustar #!/usr/bin/env perl #****** lyricue/pod # NAME # Pod documentation # DESCRIPTION # Documentation for lyricue that is displayed by perldoc # SOURCE # =head1 NAME lyricue - the GNU Lyric Display System =head1 SYNOPSIS lyricue [-v|-l] [-b] [-r] [-w I] [-d[q]] [-s I] =head1 DESCRIPTION This application is used to edit/display song lyrics on a second screen/projector for use at singing events such as church services. =head1 OPTIONS =over 4 =item B<-v> Get lyricue version =item B<-d> Turn on debugging mode. Prints out debugging information. Use -dq to enable SQL debugging as well =item B<-l> List available songs. Outputs a list of songs in HTML format =item B<-b> Turn off background changing ability. Speeds program load =item B<-s> Set server to connect to for Db and screen =item B<-r> Set server to connect to for MySQL =item B<-w> Do not maximize window on startup =item B<-i> Import song list from a file =back =head1 CONFIGURATION All configuration is done by editing the configuration section in the program =head1 REQUIRES Perl 5.6 or later, DBI::MySQL, Gtk3-Perl, MySQL database, Clutter-perl, Gstreamer =head1 SEE ALSO lyricue_server, lyricue_remote =head1 AUTHOR Chris Debenham =head1 COPYRIGHT This program is released under the GPL (http://www.gnu.org/copyleft/gpl.html) =head1 VERSION Lyric_interface Version 4.0.12 =cut #*** #****** lyricue/setup # NAME # Setup section # DESCRIPTION # Loads required modules, sets some global variables, # and other global things # SOURCE # # # Modules we use. # use strict; use Time::HiRes qw(tv_interval gettimeofday); use warnings; use DBI; use POSIX; use locale; use IO::Socket::INET; use Encode; use Gtk3 '-init'; use URI::file; use XML::Simple; use File::Temp qw/tempdir tempfile/; use File::MimeInfo qw/globs/; use Cwd qw(abs_path); use File::Basename; use Sys::Hostname; # Import Glib::IO use Glib::Object::Introspection; Glib::Object::Introspection->setup( basename => 'Gio', version => '2.0', package => 'Glib::IO' ); # Import gnome-desktop Glib::Object::Introspection->setup( basename => 'GnomeDesktop', version => '3.0', package => 'GnomeDesktop' ); eval { require Locale::gettext }; if ($@) { print STDERR "Gettext not available, english text only\n"; sub gettext { return $_[0]; } } else { import Locale::gettext; textdomain('lyricue'); bind_textdomain_codeset('lyricue', "UTF-8"); } binmode(STDOUT, ":utf8"); binmode(STDERR, ":utf8"); # # Site Configuration. You should only have to # edit this section. # my ($globals); my %lsdvd; $globals->{'execdir'} = dirname(abs_path($0)); if ($^O eq 'MSWin32') { $globals->{'etcdir'} = "etc/lyricue/"; $globals->{'basedir'} = ".lyricue/"; $globals->{'sharedir'} = ""; } else { $globals->{'etcdir'} = abs_path($globals->{'execdir'} . "/../../etc/lyricue/"); if ((!defined $globals->{'etcdir'}) || (!-d "$globals->{'etcdir'}")) { $globals->{'etcdir'} = abs_path($globals->{'execdir'} . "/../etc/lyricue/"); if ((!defined $globals->{'etcdir'}) || (!-d "$globals->{'etcdir'}")) { $globals->{'etcdir'} = "/etc/lyricue"; } } $globals->{'etcdir'} = $globals->{'etcdir'} . "/"; $globals->{'sharedir'} = abs_path($globals->{'execdir'} . "/../share/lyricue/"); if ((!defined $globals->{'sharedir'}) || (!-d $globals->{'sharedir'})) { $globals->{'sharedir'} = "/usr/share/lyricue"; } $globals->{'sharedir'} = $globals->{'sharedir'} . "/"; $globals->{'basedir'} = Glib::get_user_data_dir . "/lyricue/"; } # # You shouldn't have to change anything after this line # # convenience variables for true and false use constant FALSE => 0; use constant TRUE => 1; use constant GONE => 2; $globals->{'version'} = "4.0.12"; $globals->{'accessfile'} = $globals->{'etcdir'} . "access.conf"; $globals->{'conffile'} = $globals->{'etcdir'} . "default.conf"; $globals->{'profile'} = ""; $globals->{'mysqlhost'} = "localhost"; $globals->{'lyricdb'} = "lyricDb"; $globals->{'bibledb'} = ""; $globals->{'biblename'} = ""; $globals->{'category'} = ""; $globals->{'access'} = ""; $globals->{'usesword'} = TRUE; $globals->{'mediadb'} = "mediaDb"; $globals->{'sortby'} = "title"; $globals->{'bg_previews'} = TRUE; my ($previews, $miniviews, $displays, $local_preview); if ($^O eq 'MSWin32') { $globals->{'diatheke'} = ""; } else { $globals->{'diatheke'} = `which diatheke`; chomp $globals->{'diatheke'}; } $globals->{'unoconv'} = `which unoconv`; chomp $globals->{'unoconv'}; $globals->{'convert'} = `which convert`; chomp $globals->{'convert'}; $globals->{'lyricue_server'} = `which lyricue_display`; if ($globals->{'lyricue_server'} eq "") { $globals->{'lyricue_server'} = `which lyricue_server`; } chomp $globals->{'lyricue_server'}; $globals->{'preview_port'} = "2347"; #port used for preview $globals->{'update_timer'} = FALSE; $globals->{'nav_update_timer'} = FALSE; $globals->{'timer'} = FALSE; $globals->{'debugging'} = FALSE; $globals->{'spell'} = TRUE; $globals->{'preview_pid'} = FALSE; $globals->{'hovering_over_link'} = FALSE; $globals->{'db_adminuser'} = ""; $globals->{'icon_width'} = 96; $globals->{'thumb_width'} = 128; $globals->{'snapshot_width'} = 256; $globals->{'firstrun'} = FALSE; $globals->{'image_playlist'} = FALSE; $globals->{'local_hostname'} = hostname(); $globals->{'preview_starting'} = 0; # Optional modules # Import Gtkspell eval { Glib::Object::Introspection->setup( basename => 'GtkSpell', version => '3.0', package => 'GtkSpell' ); }; if ($@) { print STDERR "Gtk-Spell not available, spell checking turned off\n"; $globals->{'spell'} = FALSE; } if ($globals->{'diatheke'} eq "") { $globals->{'diatheke'} = "true"; } # Transitions use constant DEFAULT => 0; use constant NOTRANS => 1; use constant FADE => 2; use constant SLIDE_TEXT => 3; use constant ROTATE_TEXT => 4; use constant RANDOM => 5; # Transition directions use constant NONE => 0; use constant WAIT => 2**0; use constant UP => 2**1; use constant DOWN => 2**2; use constant RIGHT => 2**3; use constant LEFT => 2**4; use constant X_AXIS => 2**5; use constant Y_AXIS => 2**6; use constant Z_AXIS => 2**7; use constant NUM_TRANS => 8; # Quick globals my $config; my $widgets; my $bibleMenu; my @ASSOCIATE; my %pageOrder; my %selectedimages; my ($lyricDbh, $mediaDbh, $bibleDbh); my ($errorcodes); $errorcodes->{'lyricdbopen'} = fromutf( gettext( "I'm sorry but I could not open the lyric database.\nPlease confirm that Lyricue is installed correctly and MySQL is running" ) ); $errorcodes->{'bibledbopen'} = fromutf( gettext( "I'm sorry but I could not open the bible database.\nPlease confirm that Lyricue is installed correctly and the current bible database exists.\nThe requested database was named " ) ); $errorcodes->{'mediadbopen'} = fromutf( gettext( "I'm sorry but I could not open the media database.\nPlease confirm that Lyricue is installed correctly and MySQL is running" ) ); $errorcodes->{'sqlprepare'} = fromutf(gettext("Unable to prepare query.\nHas mysql died?")); $errorcodes->{'sqlexecute'} = fromutf(gettext("Unable to execute query.\nHas mysql died?")); $errorcodes->{'socketopen'} = fromutf( gettext( "Sorry, I was unable to listen on the network.\nPlease make sure I am not already running" ) ); $errorcodes->{'erroropen'} = fromutf(gettext("Could not open ")); $errorcodes->{'fileopenread'} = fromutf( gettext( "Unable to read the file, are you sure it exists?\nThe file asked for was " ) ); $errorcodes->{'fileopenwrite'} = fromutf( gettext( "Unable to write to the file, you may not have sufficent permissions.\nPlease check the permissions for " ) ); $errorcodes->{'usage'} = fromutf( gettext( "\nUsage: lyricue <-v|-l> <-b> <-k> <-d> <-p>\n\n" . "\t-v: Prints Lyricue version information & exits\n" . "\t-l: Outputs song list in HTML & exits\n" . "\t-b: Loads Lyricue without background previews\n" . "\t-p: Specify the profile to use\n" . "\t-r: Specify the host on which the mysql server is located\n" . "\t-d: Prints debugging messages\n" . "\t-w: Don't maximize on startup\n" . "\t-i: Import songlist from file\n\n" ) ); $errorcodes->{'nobible'} = fromutf( gettext("No bible has been selected\n" . "Please select one from the menu") ); # Widgets affected by access controls # access 'e' my @edit_items = ( "buttonMainAdd", "buttonMainEdit", "add_song1", "edit_song1", "buttonQuickSave" ); # access 'd' my @delete_items = ("delete_song1"); # access 's' my @display_items = ( "previous_page1", "next_page1", "display_now1", "blank_display1", "buttonMainPrev", "buttonMainNext", "buttonMainPoint", "buttonMainBlank", "notebookRight", "buttonQuickShow", "buttonMainClear", "clear_text1", "buttonMainReshow" ); # access 'p' my @playlist_items = ( "buttonAddToPlaylist", "playlist1", "vboxMainRight", "buttonMainImage", "buttonMainVerse", "buttonMainSublist" ); # access 'a' my @admin_items = ("user_administration1"); #*** #****** lyricue/main_code # NAME # main_code - main code section, not in subroutine # SYNOPSIS # No output # FUNCTION # Figure out where to go # INPUTS # Commandline # OUTPUT # Everything # SOURCE # if ($ARGV[0]) { foreach (0 .. (@ARGV - 1)) { if ($ARGV[$_] eq "-v") { print "Lyricue Interface version " . $globals->{'version'} . "\n"; exit; } elsif ($ARGV[$_] eq "-l") { $globals->{'print_songs'} = TRUE; } elsif ($ARGV[$_] eq "-b") { $globals->{'bg_previews'} = FALSE; } elsif ($ARGV[$_] eq "-d") { $globals->{'debugging'} = 1; } elsif ($ARGV[$_] eq "-dq") { $globals->{'debugging'} = 2; } elsif ($ARGV[$_] eq "-w") { $globals->{'run_windowed'} = TRUE; } elsif ($ARGV[$_] eq "-p") { $globals->{'profile'} = $ARGV[$_ + 1]; $ARGV[$_ + 1] = ""; } elsif ($ARGV[$_] eq "-r") { $globals->{'mysqlhost'} = $ARGV[$_ + 1]; $ARGV[$_ + 1] = ""; } elsif ($ARGV[$_] eq "-i") { import_song_from_file($ARGV[$_ + 1]); exit; } elsif ($ARGV[$_] eq "") { # ignore } else { print $errorcodes->{'usage'}; exit; } } } # Some global stuff my ($query, $row, $sth); # Set umask umask 0002; # Check if user ~/.local/share/lyricue directory exists, otherwire create if (-e $globals->{'basedir'}) { if (!-d $globals->{'basedir'}) { print STDERR "Old ~/.local/share/lyricue existed but was not a directory, moving to ~/.local/share/lyricue.orig\n"; rename $globals->{'basedir'}, $globals->{'basedir'} . ".orig"; mkdir $globals->{'basedir'}, 0777; } } else { system("mkdir -p " . $globals->{'basedir'}); } # Setup logging my $logname = $globals->{'basedir'} . "/frontend.log"; rename($logname, $logname . ".old") or system("mv", $logname, $logname . ".old"); open(LOG, ">" . $logname); binmode LOG, ":utf8"; debug("Lyricue Interface version " . $globals->{'version'}); debug("Running from " . $globals->{'execdir'}); use Data::Dumper; $globals->{'thumbnail_factory'} = GnomeDesktop::DesktopThumbnailFactory->new( 'GNOME_DESKTOP_THUMBNAIL_SIZE_LARGE'); $widgets->{'main'} = load_window("windowMain"); fix_widget_names(); # Needed since gtk2::builder is not setting widget names # Load the config file $globals->{'access'} = load_access(); # Open lyricDB, bibleDB and mediaDb db_select(); $query = "SELECT profile FROM profiles WHERE host='" . hostname() . "'"; $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); if (defined $row[0]) { if ($globals->{'profile'} eq "") { $globals->{'profile'} = $row[0]; } } else { if ($globals->{'profile'} eq "") { $globals->{'profile'} = "Default"; } $query = "INSERT INTO profiles (host, profile) VALUES ('" . hostname() . "', '" . $globals->{'profile'} . "')"; do_query($lyricDbh, $query, FALSE); } debug("Profile $globals->{'profile'}"); $config = load_config($globals->{'profile'}); if ($globals->{'print_songs'}) { print_songs(); exit; } if (defined $config->{'DefBible'} && ($config->{'DefBible'} ne "")) { my @tmpbible = split(/;/, $config->{'DefBible'}, 2); $globals->{'biblename'} = $tmpbible[1]; @tmpbible = split(/:/, $tmpbible[0], 2); do_change_bible($tmpbible[1], $tmpbible[0]); } $0 = "Lyricue Interface"; check_displays(); init_mainWindow(); $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data} = -1; choose_playlist(); clean_database(); # Don't let them cancel out of the playlist chooser yet $widgets->{'main'}->get_object('toolbuttonPlayCancel')->hide; # Setup background tasks $globals->{'status_timer'} = Glib::Timeout->add(1000, \&check_status); Gtk3->main(); exit(0); #*** #****f* lyricue/close_main # NAME # close_main # SYNOPSIS # close_main () # FUNCTION # Callback function to close the window # INPUTS # none # OUTPUT # Closes the interface # SOURCE # sub close_main { debug("Quitting"); do_pending(); # Save current state write_config_quick(); $lyricDbh->disconnect; if ((!$globals->{'usesword'}) && ($bibleDbh != NULL)) { $bibleDbh->disconnect; } $mediaDbh->disconnect; Gtk3->main_quit; if ($globals->{'editview_pid'}) { debug("Killing $globals->{'editview_pid'}"); kill 9, $globals->{'editview_pid'}; } if ($globals->{'preview_pid'}) { debug("Killing $globals->{'preview_pid'}"); kill 9, $globals->{'preview_pid'}; } my $miniviews = $globals->{'miniview_pid'}; foreach my $display (keys %$miniviews) { debug("Killing $globals->{'miniview_pid'}->{$display}"); kill 9, $globals->{'miniview_pid'}->{$display}; } close LOG; Gtk3->main_quit; return FALSE; } #*** #****f* lyricue/update_playlist # NAME # update_playlist # SYNOPSIS # update_playlist($selectedid) # FUNCTION # Clear the playlist area and redisplay with updated info # INPUTS # $selectedid - Currently selected item # OUTPUT # refreshed playlist # SOURCE # sub update_playlist { my ($selectedid) = @_; debug("Updating playlist"); if (!defined $selectedid) { my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; if ($selection) { my ($m, $i) = $selection->get_selected; if ($m) { $selectedid = $m->get($i, 2); } } } my $playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; my ($expanded, $model); $model = $widgets->{'main'}->get_object('treePlaylist')->get_model(); if ($model) { $model->foreach(\&save_expanded, \$expanded); } if ($globals->{'image_playlist'}) { debug("image playlist"); # Column 1 -> Visible text # Column 2 -> Image # Column 3 -> playorder # Column 4 -> transition $model = Gtk3::ListStore->new( 'Glib::String', 'Gtk3::Gdk::Pixbuf', 'Glib::String', 'Glib::String' ); $widgets->{'main'}->get_object('iconPlaylist')->set_model($model); $widgets->{'main'}->get_object('iconPlaylist')->set_markup_column(0); $widgets->{'main'}->get_object('iconPlaylist')->set_pixbuf_column(1); $widgets->{'main'}->get_object('iconPlaylist')->set_item_width(400); } else { debug("Tree playlist"); # Column 1 -> Visible text # Column 2 -> Colour # Column 3 -> playorder # Column 4 -> transition $model = Gtk3::TreeStore->new('Glib::String', 'Glib::String', 'Glib::String', 'Glib::String'); $widgets->{'main'}->get_object('treePlaylist')->set_model($model); my $column = Gtk3::TreeViewColumn->new_with_attributes( "", Gtk3::CellRendererText->new, markup => 0, background => 1 ); foreach ($widgets->{'main'}->get_object('treePlaylist')->get_columns) { $widgets->{'main'}->get_object('treePlaylist')->remove_column($_); } $widgets->{'main'}->get_object('treePlaylist')->append_column($column); $widgets->{'main'}->get_object('treePlaylist')->set_model($model); } add_playlist($playlist, undef, $model, $selectedid, \$expanded); if ($globals->{'image_playlist'}) { $globals->{'image_playlist_idle'} = Glib::Idle->add(\&playlist_thumbnails, $widgets->{'main'}->get_object('iconPlaylist')); } undef $globals->{'current_items'}; } #*** #****f* lyricue/add_playlist # NAME # add_playlist - Add a playlist to the playlist area # SYNOPSIS # add_playlist ($playlist, $iter, $model, $selectedid, $expanded) # FUNCTION # Add a playlist to the playlist area # INPUTS # $playlist - Playlist to add # $iter - Where to add it in the playlist area # $model - The playlist tree model # $selectedid - The currently selected item # $expanded - A lookup of all items saying which are expanded # OUTPUT # A bigger playlist # SOURCE # sub add_playlist { my ($playlist, $iter, $model, $selectedid, $expanded) = @_; debug("Add playlist " . $playlist); my $query = "SELECT * FROM playlist WHERE playlist=" . $playlist . " ORDER BY playorder"; my $sth = do_query($lyricDbh, $query, TRUE); while (my $row = $sth->fetchrow_hashref()) { my $title = ""; if ($row->{'type'} eq "back") { my $query2 = "SELECT description FROM media WHERE id=\"" . $row->{'data'} . "\""; my $sth2 = do_query($mediaDbh, $query2, TRUE); my $row2 = $sth2->fetchrow_hashref(); $title = "Background : " . $row2->{'description'}; } elsif ($row->{'type'} eq "file") { $_ = $row->{'data'}; if (/^(.*)\/(.*?)$/) { my $filename = $2; my $dir = $1; if ($dir =~ /^\/var\/tmp\/lyricue-/) { $filename =~ s/\..*?$//g; $filename =~ s/_/ /g; $title = "Presentation: " . $filename; } elsif ($dir =~ /^dvd:/) { if ($filename =~ / /) { $filename =~ s/ / from /; } $title = "DVD Title: " . $filename; } else { $title = "File: " . $filename . " in " . $dir; } } else { $title = "File: " . $row->{'data'}; } } elsif ($row->{'type'} eq "imag") { my ($type, $id) = split /;/, $row->{'data'}; if (!defined $id) { $id = $type; $type = "db"; } if ($type eq "dir") { $id =~ s/^$config->{'ImageDirectory'}\///; $title = "Image: " . $id; } else { my $query2 = "SELECT description FROM media WHERE id=\"" . $id . "\""; my $sth2 = do_query($mediaDbh, $query2, TRUE); my $row2 = $sth2->fetchrow_hashref(); $title = "Image: " . $row2->{'description'}; } } elsif ($row->{'type'} eq "vers") { $title = "Verses " . $row->{'data'}; } elsif (($row->{'type'} eq "song") || ($row->{'type'} eq "temp")) { my $query2 = "SELECT pagetitle, lyrics FROM page WHERE pageid=" . $row->{'data'}; my $sth2 = do_query($lyricDbh, $query2, TRUE); my $row2 = $sth2->fetchrow_hashref(); my $lyrics = $row2->{'lyrics'}; if ($globals->{'invert'}) { my @lyricl = split(/\n/, $lyrics); $title = $lyricl[@lyricl - 1]; } else { ($title, undef) = split(/\n/, $lyrics); } if (defined $row2->{'pagetitle'} && ($row2->{'pagetitle'} ne '')) { $title = "" . $row2->{'pagetitle'} . "\n" . $title; } if (!$title) { $title = ""; } } elsif (($row->{'type'} eq "play") || ($row->{'type'} eq "sub")) { my $query2 = "SELECT * FROM playlists WHERE id=" . $row->{'data'}; my $sth2 = do_query($lyricDbh, $query2, TRUE); my $row2 = $sth2->fetchrow_hashref(); $title = $row2->{'title'}; if ($row2->{'ref'} && $row2->{'ref'} != 0) { $query2 = "SELECT songnum FROM lyricMain WHERE id=" . $row2->{'ref'}; $sth2 = do_query($lyricDbh, $query2, TRUE); $row2 = $sth2->fetchrow_hashref(); if ($row2->{'songnum'} != 0) { $title = $row2->{'songnum'} . " - " . $title; } } } else { $title = "Unknown type"; } # Add image name to playlist item title my $query3 = "SELECT * FROM associations WHERE playlist=" . $row->{'playorder'}; my $sth3 = do_query($lyricDbh, $query3, TRUE); my $imagename = ""; while (my $row3 = $sth3->fetchrow_hashref()) { $imagename = $row3->{'imagename'}; } my $playorder = $row->{'playorder'}; my ($newiter); $title =~ s/&/&/g; if ($globals->{'image_playlist'}) { if (($row->{'type'} eq "play") || ($row->{'type'} eq "sub")) { $title = "" . $title . ""; } $newiter = $model->append(); $model->set( $newiter, 0 => $title, 1 => undef, 2 => $row->{'playorder'} ); } else { $newiter = $model->append($iter); $model->set( $newiter, 0 => $title, 1 => undef, 2 => $row->{'playorder'}, 3 => $row->{'transition'} ); # Set sub-item if image associated if ($imagename) { my ($type, $id) = split /;/, $imagename; if ($type eq "db") { my $query2 = "SELECT description FROM media WHERE id=\"" . $id . "\""; my $sth2 = do_query($mediaDbh, $query2, TRUE); my $row2 = $sth2->fetchrow_hashref(); my $imgiter = $model->append($newiter); $model->set( $imgiter, 0 => "* Background: " . $row2->{'description'}, 1 => "", 2 => $row->{'playorder'}, 3 => $row->{'transition'} ); } else { my $imgiter = $model->append($newiter); $id =~ s/^$config->{'BGDirectory'}//g; $model->set( $imgiter, 0 => "* Background: " . $id, 1 => "", 2 => $row->{'playorder'}, 3 => $row->{'transition'} ); } } # Set sub-item if transition associated if (($row->{'transition'} >> (NUM_TRANS * 2)) != 0) { my $transtext = $row->{'transition'} >> (NUM_TRANS * 2); if ($transtext == FADE) { $transtext = "radioTransFade"; } elsif ($transtext == SLIDE_TEXT) { $transtext = "radioTransSlide"; } elsif ($transtext == ROTATE_TEXT) { $transtext = "radioTransRotate"; } elsif ($transtext == RANDOM) { $transtext = "radioTransRandom"; } else { $transtext = "radioTransNone"; } my $transiter = $model->append($newiter); $model->set( $transiter, 0 => "* Transition: " . $widgets->{'main'}->get_object($transtext)->get_label(), 1 => "", 2 => $row->{'playorder'}, 3 => $row->{'transition'} ); } } # Add sublists/playlists if ($row->{'type'} eq "play" | $row->{'type'} eq "sub") { add_playlist($row->{'data'}, $newiter, $model, $selectedid, $expanded); } if ( ($$expanded->{$playorder}) || ($config->{'ExpandNew'} && !(defined $$expanded->{$playorder}))) { $widgets->{'main'}->get_object('treePlaylist') ->expand_to_path($model->get_path($newiter)); } # Select what was selected and expand its parent if (defined $selectedid && $row->{'playorder'} == $selectedid) { debug("Selecting $selectedid"); my $path = $model->get_path($newiter); my $pathstring = $path->to_string(); $pathstring =~ s/^(.*):(.*?)$/$1/g; if (defined($2)) { $widgets->{'main'}->get_object('treePlaylist') ->expand_to_path( Gtk3::TreePath->new_from_string($pathstring)); } $widgets->{'main'}->get_object('treePlaylist') ->get_selection->select_iter($newiter); } } } #*** #****f* lyricue/save_expanded # NAME # save_expanded # SYNOPSIS # save_expanded($tree, $path, $expanded) # FUNCTION # Save the expanded state of the treeview item # INPUTS # $tree - Treeview to save state of # $part - Item to check # $expanded - state lookup # OUTPUT # $expanded is updated # SOURCE # sub save_expanded { my ($store, $path, $iter, $expanded) = @_; if (!(defined $$expanded->{$store->get($iter, 2)})) { $$expanded->{$store->get($iter, 2)} = $widgets->{'main'}->get_object('treePlaylist')->row_expanded($path); } return FALSE; } #*** #****f* lyricue/change_sort_order # NAME # change_sort_order # SYNOPSIS # change_sort_order (undef,$column) # FUNCTION # Change the order by which the available songs are displayed # INPUTS # undef - not used # $column - which column to order by # OUTPUT # Calls update_available to redisplay available songs # SOURCE # sub change_sort_order { debug("change sort order"); my (undef, $column) = @_; if ($column == 1) { $globals->{'sortby'} = "book"; } elsif ($column == 2) { $globals->{'sortby'} = "songnum"; } elsif ($column == 3) { $globals->{'sortby'} = "id"; } elsif ($column == 4) { $globals->{'sortby'} = "book,songnum,title"; } elsif ($column == 5) { $globals->{'sortby'} = "book,title"; } else { $globals->{'sortby'} = "title"; } debug("Changing sort order to " . $globals->{'sortby'}); update_available(); } #*** #****f* lyricue/update_available # NAME # update_available # SYNOPSIS # update_available () # FUNCTION # Update the list of available songs, limited by keyword and sorted by orderby # OUTPUT # updated list of available songs # SOURCE # sub update_available { debug("update available"); reset_timer($globals->{'update_timer'}); my $store = Gtk3::ListStore->new('Glib::String', 'Glib::String', 'Glib::Uint', 'Glib::Uint'); if ( $widgets->{'main'}->get_object('treeAvailable')->{user_data} && ($widgets->{'main'}->get_object('treeAvailable')->{user_data} eq "load") ) { $widgets->{'main'}->get_object('treeAvailable')->{data} = (); } else { $widgets->{'main'}->get_object('treeAvailable')->{user_data} = "load"; my $column1 = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Title")), Gtk3::CellRendererText->new, text => 0 ); my $column2 = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Book")), Gtk3::CellRendererText->new, text => 1 ); my $column3 = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Song Number")), Gtk3::CellRendererText->new, text => 2 ); $column1->set_resizable(TRUE); $column2->set_resizable(TRUE); $column3->set_resizable(TRUE); $widgets->{'main'}->get_object('treeAvailable') ->append_column($column1); $widgets->{'main'}->get_object('treeAvailable') ->append_column($column2); $widgets->{'main'}->get_object('treeAvailable') ->append_column($column3); $column1->signal_connect(clicked => \&change_sort_order, 0); $column2->signal_connect(clicked => \&change_sort_order, 1); $column3->signal_connect(clicked => \&change_sort_order, 2); } my $songname = $widgets->{'main'}->get_object('entrySearch')->get_text(); my $special_id = 0; if (($config->{'SpecialSong'}) ne "" && ($songname eq "")) { my $query = "SELECT id,title,songnum,book FROM lyricMain WHERE title LIKE \"%" . $config->{'SpecialSong'} . "%\""; $sth = do_query($lyricDbh, $query, FALSE); $row = $sth->fetchrow_hashref(); my $iter = $store->append; $store->set( $iter, 0, fromutf($row->{'title'}), 1, fromutf($row->{'book'}), 2, $row->{'songnum'}, 3, $row->{'id'} ); $special_id = $row->{'id'}; } $query = "SELECT id,title,songnum,book FROM lyricMain WHERE id > 0"; if (defined $special_id && ($special_id > 0)) { $query .= " AND id != " . $special_id; } # Add search term if applicable #if ($keywords) { # $query .= " AND keywords LIKE \"%" . $keywords . "%\""; #} elsif ($songname) { if ($songname =~ /^\d+$/) { $query .= " AND songnum=" . $songname; } else { $songname =~ s/[\s,]/%/g; $query .= " AND title LIKE \"%" . $songname . "%\""; } #} $query .= " ORDER BY " . $globals->{'sortby'}; $sth = do_query($lyricDbh, $query, FALSE); while ($row = $sth->fetchrow_hashref()) { my $iter = $store->append; $store->set( $iter, 0, fromutf($row->{'title'}), 1, fromutf($row->{'book'}), 2, $row->{'songnum'}, 3, $row->{'id'} ); } if ($songname ne "") { $query = "SELECT id,title,songnum,book,SUBSTRING_INDEX(lyrics,'\n',1) as line FROM page,lyricMain WHERE pagenum=1 AND SUBSTRING_INDEX(lyrics,'\n',1) LIKE \"%" . $songname . "%\" AND page.songid=lyricMain.id AND title != SUBSTRING_INDEX(lyrics,'\n',1) ORDER BY " . $globals->{'sortby'}; $sth = do_query($lyricDbh, $query, FALSE); while ($row = $sth->fetchrow_hashref()) { my $iter = $store->append; $store->set( $iter, 0, fromutf($row->{'line'}) . " (" . fromutf($row->{'title'}) . ")", 1, $row->{'book'}, 2, $row->{'songnum'}, 3, $row->{'id'} ); } } $widgets->{'main'}->get_object('treeAvailable')->set_model($store); $widgets->{'main'}->get_object('treeAvailable') ->set_headers_clickable(TRUE); $widgets->{'main'}->get_object('treeAvailable') ->get_selection->set_mode('multiple'); debug("Avail updated"); return FALSE; } #*** #****f* lyricue/treeAvailable_row_activated # NAME # treeAvailable_row_activated # SYNOPSIS # treeAvailable_row_activated ($widget, $event) # FUNCTION # Add the currently selected song to the playlist # INPUTS # $widget - Calling widget # $event - Calling event # OUTPUT # New song on playlist # SOURCE # sub treeAvailable_row_activated { my ($widget, $event) = @_; debug("Song activated from available songs list"); add_to_playlist(); } #*** #****f* lyricue/popup_avail_menu # NAME # popup_avail_menu # SYNOPSIS # popup_avail_menu ($widget, $event) # FUNCTION # popup a menu when available songs right-clicked # INPUTS # $widget - Calling widget # $event - Calling event # OUTPUT # Displays the right-click menu # SOURCE # sub popup_avail_menu { my ($widget, $event) = @_; debug("Button clicked on available songs list"); if ($event->button == 3) { my @items = (); if ($globals->{'access'} =~ /e/) { push @items, [fromutf(gettext("/Edit Song")), undef, 'edit_song', 1, '', '']; } if ($globals->{'access'} =~ /d/) { push @items, [ fromutf(gettext("/Delete Song")), undef, 'delete_song', 1, '', '' ]; } push @items, ( [ fromutf(gettext("/Refresh List")), undef, 'update_available', 1, '', '' ], [ fromutf(gettext("/Order - Songbook -> No.")), undef, 'change_sort_order', 4, '', '' ], [ fromutf(gettext("/Order - Songbook -> Name.")), undef, 'change_sort_order', 5, '', '' ] ); if ($globals->{'access'} =~ /p/) { push @items, ( [ fromutf(gettext("/Add to Playlist")), undef, 'add_to_playlist', 1, '', '' ] ); } my $menu = create_menu(@items); $menu->attach_to_widget($widgets->{'main'}->get_object('treeAvailable')); $menu->popup(undef, undef, undef, undef, $event->button, $event->time); return (TRUE); } # Tell calling code that we have not handled this event; pass it on. return (FALSE); } sub treeAvailable_cursor_changed_cb { my $selection = $widgets->{'main'}->get_object('treeAvailable')->get_selection; my ($sel, $model) = $selection->get_selected_rows; my $iter = $model->get_iter(@$sel[0]); if ($iter) { my $songid = $model->get($iter, 3); my $query = "SELECT pageid FROM page WHERE songid=" . $songid . " ORDER BY pagenum"; $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); if (defined $row[0]) { my $pageid = $row[0]; preview_pageid($pageid); } } } #*** #****f* lyricue/popup_backdrop_menu # NAME # popup_backdrop_menu # SYNOPSIS # popup_backdrop_menu ($event, $selected) # FUNCTION # popup a menu when backdrop item right-clicked # INPUTS # $event - the calling event # OUTPUT # Displays the right-click menu # SOURCE # sub popup_backdrop_menu { my ($widget, $event, $selected) = @_; debug("Button clicked on Backdrops"); my @items = (); push @items, [fromutf(gettext("/Set font colours")), undef, 'manage_bg', undef]; my $menu = create_menu(@items); $menu->attach_to_widget($widget); $menu->popup(undef, undef, undef, undef, $event->button, $event->time); } sub manage_bg { my ($widget) = @_; my $selected = ""; my @list = $widgets->{'main'}->get_object('iconviewBack')->get_selected_items; if (defined $list[0]) { my $model = $widgets->{'main'}->get_object('iconviewBack')->get_model; my $iter = $model->get_iter($list[0][0]); $selected = $model->get($iter, 2); } if ($selected eq "") { return; } debug("Manage bg:" . $selected); $widgets->{'image'} = load_window("dialogImage"); $widgets->{'image'}->get_object('vboxImageLeft')->hide; my $store = Gtk3::ListStore->new('Glib::String', 'Glib::String'); my $iter = $store->append; $store->set($iter, 0, $selected, 1, $selected); $widgets->{'image'}->get_object('treeImage')->set_model($store); $widgets->{'image'}->get_object('treeImage') ->get_selection->select_iter($iter); change_preview(); $widgets->{'image'}->get_object('colorbuttonFontColour') ->signal_connect(button_press_event => \&open_dialogColour, "ImageFont"); $widgets->{'image'}->get_object('colorbuttonShadowColour')->signal_connect( "button_press_event" => \&open_dialogColour, "ImageShadow" ); $widgets->{'image'}->get_object('buttonImageOK') ->signal_connect('clicked' => \&close_dialog); $widgets->{'image'}->get_object('buttonImageCancel')->hide(); $widgets->{'image'}->get_object('hboxImageColour')->show(); $widgets->{'image'}->get_object('dialogImage')->show; } sub reset_font_colour { my ($widget, $object) = @_; my $rgba = Gtk3::Gdk::RGBA->new(0,0,0,0); if ($widget eq $widgets->{'image'}->get_object('buttonFontColourDefault')) { $widgets->{'image'}->get_object('entryImageFontColour') ->set_text("Default"); $rgba->parse($config->{'Colour'}); $widgets->{'image'}->get_object('colorbuttonFontColour') ->set_rgba($rgba); change_colour_media(); } elsif ( $widget eq $widgets->{'image'}->get_object('buttonShadowColourDefault')) { $widgets->{'image'}->get_object('entryImageShadowColour') ->set_text("Default"); $rgba->parse($config->{'ShadowColour'}); $widgets->{'image'}->get_object('colorbuttonShadowColour') ->set_rgba($rgba); change_colour_media(); } } #****f* lyricue/popup_play_menu # NAME # popup_play_menu # SYNOPSIS # popup_play_menu ($event) # FUNCTION # popup a menu when playlist item right-clicked # INPUTS # $event - the calling event # OUTPUT # Displays the right-click menu # SOURCE # sub popup_play_menu { my ($event) = @_; debug("Button clicked on playlist window"); my $playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; my $query = "SELECT title, data FROM playlist, playlists WHERE playlist.data = playlists.id AND playlist = " . $playlist . " AND type = 'sub'"; my $sth = do_query($lyricDbh, $query, FALSE); my (@list); while ($row = $sth->fetchrow_hashref()) { my ($text); $text->{'data'} = $row->{'data'}; $text->{'title'} = $row->{'title'}; push @list, $text; my @childid = find_more_children($row->{'data'}); foreach (@childid) { debug("Child sublist found. ID: " . $_); my $query2 = "SELECT title FROM playlists WHERE id=" . $_; my $sth2 = do_query($lyricDbh, $query2, FALSE); my $row2 = $sth2->fetchrow_hashref(); my ($text); $text->{'data'} = $row2->{'data'}; $text->{'title'} = $row2->{'title'}; push @list, $text; } } my @items = ( [fromutf(gettext("/Duplicate Item")), undef, 'copy_item', 1], [ fromutf(gettext("/Remove from Playlist")), undef, 'remove_from_playlist', 1 ], [fromutf(gettext("/Refresh Playlist")), undef, 'update_playlist', 1], [fromutf(gettext("/Invert Line Display")), undef, 'invert_lines', 1], [fromutf(gettext("/Loop this playlist item")), undef, 'begin_loop', 1], [ fromutf(gettext("/Associate background")), undef, 'prepare_for_association', 1 ], [ fromutf(gettext("/Dis-associate background")), undef, 'disassociate_bg', 1 ], [ fromutf(gettext("/Move to sublist/Main")), undef, 'move_item_to_sublist', $playlist ], ); foreach (sort { uc($a->{'title'}) cmp uc($b->{'title'}) } @list) { my $item = fromutf(gettext("/Move to sublist/")) . $_->{'title'}; push @items, [$item, undef, 'move_item_to_sublist', $_->{'data'}],; } my $menu = create_menu(@items); $menu->attach_to_widget($widgets->{'main'}->get_object('treePlaylist')); $menu->popup(undef, undef, undef, undef, $event->button, $event->time); } sub create_menu { my @items = @_; my $menu = Gtk3::Menu->new(); my $subname = ""; my $submenu = NULL; foreach my $item (@items) { my $label = @$item[0]; $label =~ s/^\///g; if ($label =~ /\//) { my $menuname = $label; $menuname =~ s/\/.*$//g; if ($menuname ne $subname) { $subname = $menuname; $submenu = Gtk3::Menu->new(); my $menuitem = Gtk3::MenuItem->new_with_label($menuname); $menuitem->set_submenu($submenu); $menu->append($menuitem); } my $subitem = $label; $subitem =~ s/$menuname\///g; my $menuitem = Gtk3::MenuItem->new_with_label($subitem); $menuitem->signal_connect(activate => \&{@$item[2]}, @$item[3]); $submenu->append($menuitem); } else { my $menuitem = Gtk3::MenuItem->new_with_label($label); $menuitem->signal_connect(activate => \&{@$item[2]}, @$item[3]); $menu->append($menuitem); } } $menu->show_all(); return $menu; } #*** #****f* lyricue/add_song # NAME # add_song # SYNOPSIS # add_song () # FUNCTION # Called which add chosen from menu/buttons # INPUTS # OUTPUT # display add window # SOURCE # sub add_song { my $i; debug("Add clicked"); if ($widgets->{'add'} && $widgets->{'add'}->get_object('windowEditSong')) { if (!$widgets->{'add'}->get_object('windowEditSong')->get_visible()) { $widgets->{'add'}->get_object('windowEditSong')->destroy; } else { return; } } $widgets->{'add'} = load_window("windowEditSong"); load_presets(); start_editview(); $widgets->{'add'}->get_object('buttonEditPreviewServer') ->signal_connect("clicked" => \&preview_page, "SERVER"); $widgets->{'add'}->get_object('notebookEditPages')->remove_page(0); %pageOrder = (); add_page(); $widgets->{'add'}->get_object('windowEditSong')->{user_data} = 0; $widgets->{'add'}->get_object('windowEditSong')->show_all(); $widgets->{'add'}->get_object('buttonEditRemovePage')->set_sensitive(FALSE); $widgets->{'add'}->get_object('remove_page1')->set_sensitive(FALSE); } #*** #****f* lyricue/delete_song # NAME # delete_song # SYNOPSIS # delete_song () # FUNCTION # Confirm if a song is to be deleted # INPUTS # calls create_dialog_delete to confirm deletion # SOURCE # sub delete_song { debug("Delete song selected"); my $selection = $widgets->{'main'}->get_object('treeAvailable')->get_selection; my ($sel, $modelTree) = $selection->get_selected_rows; my $deletexml = load_window("dialogSelectSongs"); $deletexml->get_object('labelSelectSongs') ->set_text(gettext("Are you sure you wish to delete ")); my $model = Gtk3::ListStore->new( 'Glib::Boolean', 'Glib::String', 'Glib::String', 'Glib::String', 'Glib::Uint', 'Glib::Uint' ); my $renderer = Gtk3::CellRendererToggle->new; $renderer->signal_connect( toggled => sub { my ($cell, $path_str, $model) = @_; my $path = Gtk3::TreePath->new_from_string($path_str); my $column = 0; my $iter = $model->get_iter($path); my ($toggle_item) = $model->get($iter, $column); $toggle_item ^= 1; debug('setting ' . $path_str . ' to ' . $toggle_item); # set new value $model->set($iter, $column, $toggle_item); }, $model ); my $column1 = Gtk3::TreeViewColumn->new_with_attributes("", $renderer, active => 0); my $column2 = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Title")), Gtk3::CellRendererText->new, text => 1 ); my $column3 = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Artist")), Gtk3::CellRendererText->new, text => 2 ); my $column4 = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Book")), Gtk3::CellRendererText->new, text => 3 ); my $column5 = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Song Number")), Gtk3::CellRendererText->new, text => 4 ); $column1->set_resizable(TRUE); $column2->set_resizable(TRUE); $column3->set_resizable(TRUE); $column4->set_resizable(TRUE); $column5->set_resizable(TRUE); $deletexml->get_object('treeSongImport')->append_column($column1); $deletexml->get_object('treeSongImport')->append_column($column2); $deletexml->get_object('treeSongImport')->append_column($column3); $deletexml->get_object('treeSongImport')->append_column($column4); $deletexml->get_object('treeSongImport')->append_column($column5); foreach my $path (@$sel) { my $iter = $modelTree->get_iter($path); my $songid = $modelTree->get($iter, 3); if (!($modelTree->get($iter, 1) eq $config->{'SpecialSong'})) { $query = "SELECT title,songnum,book,artist FROM lyricMain WHERE id=" . $songid; $sth = do_query($lyricDbh, $query, FALSE); $row = $sth->fetchrow_hashref(); my $newiter = $model->append; $model->set( $newiter, 0, TRUE, 1, $row->{'title'}, 2, $row->{'artist'}, 3, $row->{'book'}, 4, $row->{'songnum'}, 5, $songid ); } } $deletexml->get_object('treeSongImport')->set_model($model); $deletexml->get_object('treeSongImport')->set_headers_clickable(TRUE); my $confirm = $deletexml->get_object('dialogSelectSongs')->run(); if ($confirm == 1) { $model->foreach(\&do_delete_song); } close_dialog($deletexml->get_object('dialogSelectSongs')); update_available(); } #*** #****f* lyricue/do_delete_song # NAME # do_delete_song # SYNOPSIS # do_delete_song ($songid) # FUNCTION # Do the actual deletion of a song including from the playlist # INPUTS # $songid - Id of song to be deleted # OUTPUT # One less song # SOURCE # sub do_delete_song { my ($store, $path, $iter) = @_; my ($query, $sth, $rv); if ($store->get($iter, 0) == FALSE) { return; } my $songid = $store->get($iter, 5); debug("do delete song $songid"); start_transaction(); $query = "DELETE FROM lyricMain WHERE id=" . $songid; $sth = do_query($lyricDbh, $query, FALSE); $query = "DELETE FROM page WHERE songid=" . $songid; $sth = do_query($lyricDbh, $query, FALSE); $query = "SELECT playorder FROM playlist,page WHERE playlist.data=page.pageid AND playlist.type=\"song\" AND page.songid=" . $songid; $sth = do_query($lyricDbh, $query, FALSE); my $disable = 0; while (my @row = $sth->fetchrow_array()) { my $query2 = "DELETE FROM playlist WHERE playorder=" . $row[0]; my $sth2 = do_query($lyricDbh, $query2, FALSE); $disable = 1; } end_transaction(); if ($disable == 1) { #Cancel any loop timers #Continuing to loop over a modified playlists due to #removed items represents a possible crash risk - better safe #than sorry. # reset_timer($globals->{'timer'}); # } } #*** #****f* lyricue/do_save_song # NAME # do_save_song # SYNOPSIS # do_save_song () # FUNCTION # Save the song to the DB # INPUTS # OUTPUT # One more song in the DB # SOURCE # sub do_save_song { my ($query, $sth, $page, $songid); debug("do save song"); my $newitem = FALSE; $songid = $widgets->{'add'}->get_object('windowEditSong')->{user_data}; my $numpages = $widgets->{'add'}->get_object('notebookEditPages')->get_n_pages; start_transaction(); if ($songid != 0) { # Remove extra pages debug("Song number: " . $songid); $query = "DELETE FROM page WHERE songid=" . $songid . " AND pagenum > " . $numpages; $sth = do_query($lyricDbh, $query, FALSE); $query = "DELETE playlist FROM playlist LEFT JOIN page ON playlist.data=page.pageid WHERE page.songid=" . $songid . " AND page.pagenum > " . $numpages; $sth = do_query($lyricDbh, $query, FALSE); # Update lyricMain with new info $query = "UPDATE lyricMain SET title=" . quote($widgets->{'add'}->get_object('entryEditName')->get_text()); $query .= ", songnum=" . quote($widgets->{'add'}->get_object('entryEditNumber')->get_text()); $query .= ", book=" . quote($widgets->{'add'}->get_object('entryEditBook')->get_text()); $query .= ", artist=" . quote($widgets->{'add'}->get_object('entryEditArtist')->get_text()); $query .= ", copyright=" . quote( $widgets->{'add'}->get_object('entryEditCopyright')->get_text()); my $noaudit = ""; if (!$widgets->{'add'}->get_object('checkEditAudit')->get_active()) { $noaudit = "NOAUDIT "; } $query .= ", keywords=" . quote( toutf( $noaudit . $widgets->{'add'}->get_object('entryEditKeywords') ->get_text() ) ); $query .= " WHERE id=" . $songid; $sth = do_query($lyricDbh, $query, FALSE); } else { # Find next id $query = "SELECT MAX(id)+1 FROM lyricMain WHERE id < 2000000"; $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array; $songid = $row[0]; if ((!defined $songid) || ($songid < 1)) { $songid = 1; } debug("Song number: " . $songid); # insert into db $query = "INSERT INTO lyricMain ( id, title, songnum, book, artist, keywords, copyright, entered, written ) VALUES ( " . $songid . ", "; $query .= quote( toutf($widgets->{'add'}->get_object('entryEditName')->get_text())) . ","; if($widgets->{'add'}->get_object('entryEditNumber')->get_text() eq "") { $query .= "0,"; } else { $query .= quote( toutf($widgets->{'add'}->get_object('entryEditNumber')->get_text())) . ","; } $query .= quote( toutf($widgets->{'add'}->get_object('entryEditBook')->get_text())) . ","; $query .= quote( toutf($widgets->{'add'}->get_object('entryEditArtist')->get_text())) . ","; $query .= quote( toutf( $widgets->{'add'}->get_object('entryEditKeywords')->get_text() ) ) . ","; $query .= quote( toutf( $widgets->{'add'}->get_object('entryEditCopyright')->get_text() ) ) . ", NOW(), NOW() )"; $sth = do_query($lyricDbh, $query, FALSE); } foreach my $pagenum (1 .. $numpages) { my $page = $widgets->{'add'}->get_object('notebookEditPages') ->get_nth_page($pagenum - 1); my $title = $widgets->{'add'}->get_object('notebookEditPages') ->get_tab_label($page)->get_children->get_text; my $text = fromutf(gettext("Page ")); my $lyrics = $lyricDbh->quote(get_buffer_text($page->get_children->get_buffer)); if ($title =~ /^$text/) { $text = $lyricDbh->quote(""); } else { $text = $lyricDbh->quote($title); } my $pagequery = ""; if ($songid != 0) { $query = "SELECT pageid FROM page WHERE songid=" . $songid . " AND pagenum=" . $pagenum; $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); if (defined $row[0]) { $pagequery = "UPDATE page SET lyrics=" . $lyrics . ", pagetitle=" . $text . " WHERE pageid=" . $row[0]; debug("Page Edit : " . $pagenum . "|" . $title); } } if ($pagequery eq "") { $pagequery = "INSERT INTO page (songid,pagenum,pagetitle,lyrics) VALUES (" . $songid . ", " . $pagenum . ", " . $text . ", " . $lyrics . ")"; debug("Page Add : " . $pagenum . "|" . $title); } $sth = do_query($lyricDbh, $pagequery, FALSE); } end_transaction(); return $songid; } #*** #****f* lyricue/save_song # NAME # save_song # SYNOPSIS # save_song () # FUNCTION # Save the song, close the add window and update the available songs # INPUTS # OUTPUT # Calls a few others to do anything # SOURCE # sub save_song { debug("save song"); do_save_song(); close_add_window(); update_available(); } #*** #****f* lyricue/save_song_as # NAME # save_song_as # SYNOPSIS # save_song_as () # FUNCTION # Save the song as new name, close the add window # and update the available songs # INPUTS # OUTPUT # Calls a few others to do anything # SOURCE # sub save_song_as { debug("save song as new"); $widgets->{'add'}->get_object('windowEditSong')->{user_data} = 0; do_save_song(); close_add_window(); update_available(); } #*** #****f* lyricue/add_page # NAME # add_page # SYNOPSIS # add_page () # FUNCTION # Add page clicked # INPUTS # OUTPUT # Adds a page to the song edit screen # SOURCE # sub add_page { debug("Add page clicked"); # Find free hash number my $hashnum = 0; while (exists $pageOrder{$hashnum}) { $hashnum++; } debug($hashnum); my $pagenum = $widgets->{'add'}->get_object('notebookEditPages')->get_current_page + 1; # # Construct a GtkScrolledWindow 'scrollAPage' $widgets->{'scrollAPage'}{$hashnum} = Gtk3::ScrolledWindow->new; $widgets->{'scrollAPage'}{$hashnum}->set_policy('always', 'always'); $widgets->{'scrollAPage'}{$hashnum}->show; # # Construct a GtkText 'textAPage' $widgets->{'textAPage'}{$hashnum} = Gtk3::TextView->new; $widgets->{'textAPageB'}{$hashnum} = Gtk3::TextBuffer->new(undef); $widgets->{'textAPage'}{$hashnum} ->set_buffer($widgets->{'textAPageB'}{$hashnum}); $widgets->{'textAPage'}{$hashnum}->set_editable(TRUE); $widgets->{'textAPage'}{$hashnum}->set_cursor_visible(TRUE); $widgets->{'scrollAPage'}{$hashnum}->add($widgets->{'textAPage'}{$hashnum}); $widgets->{'textAPage'}{$hashnum}->show; # # Construct a GtkLabel 'labelAPage' $widgets->{'labelAPage'}{$hashnum} = new Gtk3::Label(fromutf(gettext('Page') . " 1")); $widgets->{'labelAPage'}{$hashnum}->set_justify('center'); $widgets->{'labelAPage'}{$hashnum}->set_line_wrap(0); $widgets->{'labelAPage'}{$hashnum}->show; $widgets->{'labelAPage'}{$hashnum}->set_alignment(0.5, 0.5); # And a event box so you can change it $widgets->{'eventAPage'}{$hashnum} = Gtk3::EventBox->new; $widgets->{'eventAPage'}{$hashnum}->{user_data} = $hashnum; $widgets->{'eventAPage'}{$hashnum}->add($widgets->{'labelAPage'}{$hashnum}); $widgets->{'eventAPage'}{$hashnum}->set_above_child(FALSE); $widgets->{'eventAPage'}{$hashnum}->set_visible_window(FALSE); $widgets->{'eventAPage'}{$hashnum} ->signal_connect('button-press-event' => \&update_pagename); $pageOrder{$hashnum} = $pagenum; $widgets->{'add'}->get_object('notebookEditPages') ->insert_page($widgets->{'scrollAPage'}{$hashnum}, $widgets->{'eventAPage'}{$hashnum}, $pagenum); $widgets->{'add'}->get_object('notebookEditPages') ->set_tab_reorderable($widgets->{'scrollAPage'}{$hashnum}, TRUE); renumber_pages($pagenum, $hashnum); $widgets->{'add'}->get_object('notebookEditPages') ->set_current_page($pagenum); $widgets->{'add'}->get_object('notebookEditPages')->show_all(); $widgets->{'add'}->get_object('buttonEditRemovePage')->set_sensitive(TRUE); $widgets->{'add'}->get_object('remove_page1')->set_sensitive(TRUE); return $hashnum; } #*** #****f* lyricue/update_pagename # NAME # update_pagename # SYNOPSIS # update_pagename () # FUNCTION # Update the page name if double-clicked # SOURCE # sub update_pagename { my ($widget, $event) = @_; if ($event->type eq '2button-press') { debug("Changing page name"); my $hashnum = $widget->{user_data}; my $entry = Gtk3::Entry->new; $entry->{user_data} = $hashnum; $entry->set_text($widgets->{'labelAPage'}{$hashnum}->get_label); $entry->signal_connect(activate => \&do_update_pagename); $widgets->{'add'}->get_object('notebookEditPages') ->set_tab_label($widgets->{'scrollAPage'}{$hashnum}, $entry); } } #*** #****f* lyricue/do_update_pagename # NAME # do_update_pagename # SYNOPSIS # do_update_pagename () # FUNCTION # A newly named tab # INPUTS # SOURCE # sub do_update_pagename { my ($widget, $event) = @_; debug("Apply pagename change"); my $text = $widget->get_text; my $hashnum = $widget->{user_data}; $widgets->{'labelAPage'}{$hashnum}->set_label($text); $widgets->{'add'}->get_object('notebookEditPages')->set_tab_label( $widgets->{'scrollAPage'}{$hashnum}, $widgets->{'eventAPage'}{$hashnum} ); } #*** #****f* lyricue/renumber_pages # NAME # renumber_pages # SYNOPSIS # renumber_pages ($pagenum, $newitem) # FUNCTION # Re-number the pages in a edited song # INPUTS # $pagenum - The page number added/deleted # $newitem - The new item added # OUTPUT # Re-ordered page list # SOURCE # sub renumber_pages { my ($pagenum, $newitem) = @_; debug("renumber pages"); my $i; # Renumber pages foreach $i (keys(%pageOrder)) { debug("$i:$pageOrder{$i}|"); my $page = $pageOrder{$i}; if ($page == $pagenum) { if ($i == $newitem) { $pageOrder{$i}++; } else { # Skip it } } elsif ($page > $pagenum) { $pageOrder{$i}++; } debug("$i:$pageOrder{$i}"); my $text = fromutf(gettext("Page")); if ($widgets->{'labelAPage'}{$i}->get_text =~ /^$text/) { $widgets->{'labelAPage'}{$i} ->set_text($text . " " . $pageOrder{$i}); } $widgets->{'labelAPage'}{$i}->show(); } } #*** #****f* lyricue/remove_page # NAME # remove_page # SYNOPSIS # remove_page () # FUNCTION # Remove a page from the song being edited # INPUTS # OUTPUT # One less page # SOURCE # sub remove_page { debug("Remove page clicked"); my $i; my $pagenum = $widgets->{'add'}->get_object('notebookEditPages')->get_current_page + 1; my %newpageOrder; my $count = 0; my $text = fromutf(gettext("Page ")); foreach $i (keys(%pageOrder)) { $count++; debug("-$pagenum:$i:$pageOrder{$i}:"); if ($pageOrder{$i} < $pagenum) { $newpageOrder{$i} = $pageOrder{$i}; if ($widgets->{'labelAPage'}{$i}->get_text =~ /^$text/) { $widgets->{'labelAPage'}{$i} ->set_text(fromutf(gettext("Page ")) . $newpageOrder{$i}); } debug("$newpageOrder{$i}"); } elsif ($pageOrder{$i} == $pagenum) { $widgets->{'add'}->get_object('notebookEditPages') ->remove_page($pagenum - 1); debug(""); } elsif ($pageOrder{$i} > $pagenum) { $newpageOrder{$i} = $pageOrder{$i} - 1; debug("$newpageOrder{$i}"); if ($widgets->{'labelAPage'}{$i}->get_text =~ /^$text/) { $widgets->{'labelAPage'}{$i} ->set_text(fromutf(gettext("Page ")) . $newpageOrder{$i}); } } } %pageOrder = %newpageOrder; if ($count <= 2) { $widgets->{'add'}->get_object('buttonEditRemovePage') ->set_sensitive(FALSE); $widgets->{'add'}->get_object('remove_page1')->set_sensitive(FALSE); } } #*** #****f* lyricue/close_add_window # NAME # close_add_window # SYNOPSIS # close_add_window () # FUNCTION # Close the add window # INPUTS # OUTPUT # Add window closed # SOURCE # sub close_add_window { debug("Close add window"); stop_editview(); $widgets->{'add'}->get_object('windowEditSong')->destroy(); undef $widgets->{'add'}; } #*** #****f* lyricue/close_dialog # NAME # close_dialog # SYNOPSIS # close_dialog ($widget) # FUNCTION # Close the calling widgets toplevel window # INPUTS # $widget - Calling widget # OUTPUT # window closed # SOURCE # sub close_dialog { my ($widget) = @_; debug("Close dialog: " . $widget->get_name); if ($widget) { $widget->get_toplevel->destroy; } } #*** #****f* lyricue/edit_song # NAME # edit_song # SYNOPSIS # edit_song () # FUNCTION # Edit a song # INPUTS # OUTPUT # Calls create_window_add to edit the chosen song # SOURCE # sub edit_song { my $i; debug("Edit clicked"); my $selection = $widgets->{'main'}->get_object('treeAvailable')->get_selection; my ($sel, $model) = $selection->get_selected_rows; my $iter = $model->get_iter(@$sel[0]); if ($iter) { my $songid = $model->get($iter, 3); if ( $widgets->{'add'} && $widgets->{'add'}->get_object('windowEditSong')) { if (!$widgets->{'add'}->get_object('windowEditSong')->get_visible()) { $widgets->{'add'}->get_object('windowEditSong')->destroy; $widgets->{'add'} = undef; $widgets->{'add'} = load_window("windowEditSong"); load_presets(); start_editview(); $widgets->{'add'}->get_object('buttonEditPreviewServer') ->signal_connect("clicked" => \&preview_page, "SERVER"); %pageOrder = (); $widgets->{'add'}->get_object('notebookEditPages') ->remove_page(0); $widgets->{'add'}->get_object('windowEditSong')->show(); update_songinfo($songid); } } else { $widgets->{'add'} = load_window("windowEditSong"); $widgets->{'add'}->get_object('buttonEditPreviewServer') ->signal_connect("clicked" => \&preview_page, "SERVER"); load_presets(); start_editview(); %pageOrder = (); $widgets->{'add'}->get_object('notebookEditPages')->remove_page(0); $widgets->{'add'}->get_object('windowEditSong')->show(); update_songinfo($songid); } } } #*** sub load_presets() { my $menutop = Gtk3::Menu->new(); my $preset_num = 1; while (defined $config->{'Preset' . $preset_num}) { my $presetMenuItem = Gtk3::MenuItem->new_with_label( "Preset " . $preset_num . ": " . $config->{'Preset' . $preset_num}); $presetMenuItem->{user_data} = $preset_num; $presetMenuItem->signal_connect( "activate" => \&add_copyright_preset, $preset_num ); $menutop->append($presetMenuItem); $presetMenuItem->show(); $preset_num++; } $widgets->{'add'}->get_object('insert_preset_copyright1') ->set_submenu($menutop); } #****f* lyricue/do_add_verse # NAME # do_add_verse # SYNOPSIS # do_add_verse ($widget) # FUNCTION # Add the chosen reading # INPUTS # $widget - Calling widget # OUTPUT # Verse added to playlist # SOURCE # sub do_add_verse { my ($widget) = @_; debug("Add the chosen reading"); debug($globals->{'verses'} . "-" . $globals->{'verseEnd'}); my $book = $widget->get_toplevel->{user_data}; $book =~ s/ -.*$//g; my $chapter = $widget->get_toplevel->{user_data}; $chapter =~ s/^.*- //g; insert_verse($book, $chapter, $globals->{'verses'}, $globals->{'verseEnd'}); close_dialog($widget); } #*** #****f* lyricue/insert_verse # NAME # insert_verse # SYNOPSIS # insert_verse ( $book, $chapter, $start, $end) # FUNCTION # Add the passed verse to the playlist # INPUTS # $book - Book # $chaper - Chapter # $start - Start verse # $end - End verse # OUTPUT # Closes the interface # SOURCE sub insert_verse { my ($book, $chapter, $start, $end) = @_; debug("insert verse"); my $main_playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; if ($main_playlist == -1) { return; } my $verse = $book . ":" . $chapter . ":" . $start . "-" . $chapter . ":" . $end; debug($verse); my ($sth, $rv, $row, $playorder, $playlist); # Find next playlist entry my $query = "SELECT MAX(playorder) FROM playlist"; $sth = do_query($lyricDbh, $query, FALSE); if ($row = $sth->fetchrow_hashref()) { if ($row->{'MAX(playorder)'}) { $playorder = $row->{'MAX(playorder)'} + 1; } else { $playorder = 1; } } else { $playorder = 1; } # Find next playlists entry $query = "SELECT MAX(id) FROM playlists"; $sth = do_query($lyricDbh, $query, FALSE); $row = $sth->fetchrow_hashref(); $playlist = $row->{'MAX(id)'} + 1; # Add verse to main playlist $query = "INSERT INTO playlist (playorder,playlist,type,data) VALUES (" . $playorder . ", " . $main_playlist . ", \"play\", " . $playlist . ")"; $sth = do_query($lyricDbh, $query, FALSE); $playorder++; # Add entry to playlists table $query = "INSERT INTO playlists (id,title, profile) VALUES (" . $playlist . ", \"" . toutf($verse) . "\", \"" . $globals->{'profile'} . "\")"; $sth = do_query($lyricDbh, $query, FALSE); # Get current settings update_display("status", "", ""); my $pagenum = 1; my $loop = TRUE; my $minv = $start; while ($loop) { my $maxv = get_max_verse($book, $chapter, $minv, $end); $query = "INSERT INTO playlist (playlist,playorder,type,data) VALUES (" . $playlist . ", " . $playorder . ", \"vers\", \"" . $minv . "-" . $maxv . "\")"; $playorder++; my $sth2 = do_query($lyricDbh, $query, FALSE); if ($maxv >= $end) { $loop = FALSE; } $minv = $maxv + 1; } update_playlist(); } #*** #****f* lyricue/import_song # NAME # import_song # SYNOPSIS # import_song () # FUNCTION # Import a song into the add song dialog # INPUTS # OUTPUT # A dialog to open song to import # SOURCE # sub import_song { debug("import song"); my $filexml = load_window("dialogFileChooser"); $filexml->get_object('buttonFileOK') ->signal_connect("clicked" => \&do_import_song, $filexml); $filexml->get_object('dialogFileChooser') ->set_title(gettext("Select song to import")); $filexml->get_object('dialogFileChooser')->show_all(); } #*** #****f* lyricue/do_import_song # NAME # do_import_song # SYNOPSIS # do_import_song ($widget, $filexml) # FUNCTION # Actually import the song into the add song dialog # INPUTS # $widget - Calling widget # $filexml - Dialog containing selected filename # OUTPUT # Filled in add song dialog # SOURCE # sub do_import_song { my ($widget, $filexml) = @_; debug("do import song"); my $filename = $filexml->get_object('dialogFileChooser')->get_filename; my $lcfilename = lc($filename); if (($lcfilename =~ /xmlz$/) || ($lcfilename =~ /xml$/)) { import_song_xml($filename); } elsif ($lcfilename =~ /txt$/) { import_song_text($filename); } elsif ($lcfilename =~ /sng$/) { import_song_songbeamer($filename); } elsif ($lcfilename =~ /usr$/) { import_song_songselect($filename); } elsif ($lcfilename =~ /opw$/) { import_song_opw($filename); } elsif ($lcfilename =~ /html$/) { import_song_html($filename); } close_dialog($widget); } #*** #****f* lyricue/import_song_text # NAME # import_song_text # SYNOPSIS # import_song_text () # FUNCTION # Import a song which was stored as a text file # INPUTS # $filename - File to import # OUTPUT # Closes the interface # SOURCE sub import_song_text { my ($filename) = @_; debug("import text song"); my ($artist, $name, $keywords, $number, $book, $copyright) = ""; my $hashnum = 0; open(SONG, $filename) || return; binmode SONG, ":encoding(utf8)"; while () { if (/^Name:/) { if (!$name) { chomp; $name = $_; $name =~ s/^.*://g; $name =~ s/^ *//g; $widgets->{'add'}->get_object('entryEditName')->set_text($name); } } elsif (/^Book:/) { if (!$book) { chomp; $book = $_; $book =~ s/^.*://g; $book =~ s/^ *//g; $widgets->{'add'}->get_object('entryEditBook')->set_text($book); } } elsif (/^Number:/) { if (!$number) { chomp; $number = $_; $number =~ s/^.*://g; $number =~ s/^ *//g; $widgets->{'add'}->get_object('entryEditNumber') ->set_text($number); } } elsif (/^Artist:/) { chomp; $_ =~ s/^.*://g; $_ =~ s/^ *//g; if (!$artist) { $artist = $_; $widgets->{'add'}->get_object('entryEditArtist') ->set_text($artist); } else { $artist = "\n" . $_; $widgets->{'add'}->get_object('entryEditArtist') ->append_text($artist); } } elsif (/^Keywords:/) { if (!$keywords) { chomp; $keywords = $_; $keywords =~ s/^.*://g; $keywords =~ s/^ *//g; $widgets->{'add'}->get_object('entryEditKeywords') ->set_text($keywords); } } elsif (/^Copyright/) { if (!$copyright) { chomp; $copyright = $_; $copyright =~ s/^.*://g; $copyright =~ s/^ *//g; $widgets->{'add'}->get_object('entryEditCopyright') ->set_text($copyright); } } elsif (/^--/) { debug("add page"); $hashnum = add_page(); } else { debug("add line"); my $iter = $widgets->{'textAPageB'}{$hashnum}->get_end_iter(); $widgets->{'textAPageB'}{$hashnum}->insert($iter, $_); } } close SONG; } #*** #****f* lyricue/import_song_xml # NAME # import_song_xml # SYNOPSIS # import_song_xml ($filename) # FUNCTION # Import a song which was stored as an xml file # INPUTS # $filename - File to import # OUTPUT # Closes the interface # SOURCE sub import_song_xml { my ($filename) = @_; debug("import xml song"); my ($xml); if ($filename =~ /[zZ]$/) { open my $fh, "gzip -dc \"" . $filename . "\" |"; $xml = XMLin($fh, ForceArray => ['page'], SuppressEmpty => ''); close $fh; } else { $xml = XMLin($filename, ForceArray => ['page'], SuppressEmpty => ''); } $widgets->{'add'}->get_object('entryEditName') ->set_text($xml->{'song'}->{'name'}); $widgets->{'add'}->get_object('entryEditBook') ->set_text($xml->{'song'}->{'book'}); $widgets->{'add'}->get_object('entryEditNumber') ->set_text($xml->{'song'}->{'number'}); $widgets->{'add'}->get_object('entryEditArtist') ->set_text($xml->{'song'}->{'artist'}); $widgets->{'add'}->get_object('entryEditKeywords') ->set_text($xml->{'song'}->{'keywords'}); $widgets->{'add'}->get_object('entryEditCopyright') ->set_text($xml->{'song'}->{'copyright'}); my $pages = $xml->{'song'}->{'page'}; my $firstpage = TRUE; foreach (@$pages) { debug("add page"); if ($firstpage) { $firstpage = FALSE; $widgets->{'textAPageB'}{0}->set_text($_); } else { my $hashnum = add_page(); $widgets->{'textAPageB'}{$hashnum}->set_text($_); } } } #*** #****f* lyricue/import_song_songbeamer # NAME # import_song_songbeamer # SYNOPSIS # import_song_songbeamer ($filename) # FUNCTION # Import a song from Songbeamer format # INPUTS # $filename - Filename of .sng file to import # OUTPUT # Filled in add song dialog # SOURCE # sub import_song_songbeamer { my ($filename) = @_; debug("import songbeamer song"); my ($artist, $name, $number, $book, $copyright, $firstpage) = ""; my $hashnum = 0; open(SONG, $filename) || return; while () { if (/^#Title=/) { if (!$name) { chomp; $name = $_; $name =~ s/^#.*=//g; $name =~ s/^ *//g; $name =~ s/\r//g; $widgets->{'add'}->get_object('entryEditName')->set_text($name); } } elsif (/^#Songbook=/) { if (!$book) { chomp; $book = $_; $book =~ s/^#.*=//g; $book =~ s/^ *//g; $book =~ s/\/.*$//g; $book =~ s/\r//g; $widgets->{'add'}->get_object('entryEditBook')->set_text($book); } if (!$number) { chomp; $number = $_; $number =~ s/^#.*=[^\/]*\///g; $number =~ s/^ *//g; $number =~ s/\r//g; $widgets->{'add'}->get_object('entryEditNumber') ->set_text($number); } } elsif (/^#Author=/) { chomp; $_ =~ s/^#.*=//g; $_ =~ s/^ *//g; $_ =~ s/\r//g; if (!$artist) { $artist = $_; $widgets->{'add'}->get_object('entryEditArtist') ->set_text($artist); } else { $artist = ", " . $_; $widgets->{'add'}->get_object('entryEditArtist') ->append_text($artist); } } elsif (/^#Melody=/) { chomp; $_ =~ s/^#.*=//g; $_ =~ s/^ *//g; $_ =~ s/\r//g; if (!$artist) { $artist = $_; $widgets->{'add'}->get_object('entryEditArtist') ->set_text($artist); } else { $artist = ", " . $_; $widgets->{'add'}->get_object('entryEditArtist') ->append_text($artist); } } elsif (/^#\(c\)=/) { if (!$copyright) { chomp; $copyright = $_; $copyright =~ s/^#.*=//g; $copyright =~ s/^ *//g; $copyright =~ s/\r//g; $widgets->{'add'}->get_object('entryEditCopyright') ->set_text($copyright); } } elsif (/^#/) { # many functions in SongBeamer are unknown to Lyricue debug("unknown operator"); } elsif (/^---/) { if ($firstpage) { #no new page in the first run debug("add page"); $hashnum = add_page(); } else { $firstpage = "yes"; } } else { debug("add line"); my $iter = $widgets->{'textAPageB'}{$hashnum}->get_end_iter(); $widgets->{'textAPageB'}{$hashnum}->insert($iter, $_); } } close SONG; } #*** #****f* lyricue/update_songinfo # NAME # update_songinfo # SYNOPSIS # update_songinfo ($songid) # FUNCTION # Fill in the add song dialog with the chosen songs details/lyrics # INPUTS # $songid - Id of song to edit # OUTPUT # Filled in add song dialog # SOURCE # sub update_songinfo { my ($songid) = @_; debug("Edit clicked"); my ($sth, $query, $hashnum); if ($songid) { $widgets->{'add'}->get_object('windowEditSong')->{user_data} = $songid; $query = "SELECT lyrics,pagetitle FROM page WHERE songid=\"" . $songid . "\" ORDER BY pagenum"; $sth = do_query($lyricDbh, $query, FALSE); while ($row = $sth->fetchrow_hashref()) { $hashnum = add_page(); $widgets->{'textAPageB'}{$hashnum} ->set_text(fromutf($row->{'lyrics'})); if ($row->{'pagetitle'} ne "") { $widgets->{'labelAPage'}{$hashnum} ->set_text(fromutf($row->{'pagetitle'})); } } $query = "SELECT title,songnum,book,artist,keywords,copyright from lyricMain WHERE id=" . $songid; $sth = do_query($lyricDbh, $query, FALSE); if ($row = $sth->fetchrow_hashref()) { $widgets->{'add'}->get_object('entryEditName') ->set_text(fromutf($row->{'title'})); $widgets->{'add'}->get_object('entryEditBook') ->set_text(fromutf($row->{'book'})); $widgets->{'add'}->get_object('entryEditNumber') ->set_text(fromutf($row->{'songnum'})); $widgets->{'add'}->get_object('entryEditArtist') ->set_text(fromutf($row->{'artist'})); if ($row->{'keywords'} =~ /^NOAUDIT /) { $row->{'keywords'} =~ s/^NOAUDIT //g; $widgets->{'add'}->get_object('checkEditAudit') ->set_active(FALSE); } else { $widgets->{'add'}->get_object('checkEditAudit') ->set_active(TRUE); } $widgets->{'add'}->get_object('entryEditKeywords') ->set_text(fromutf($row->{'keywords'})); $widgets->{'add'}->get_object('entryEditCopyright') ->set_text(fromutf($row->{'copyright'})); } $widgets->{'add'}->get_object('notebookEditPages')->set_current_page(0); } } #*** #****f* lyricue/add_to_playlist # NAME # add_to_playlist # SYNOPSIS # add_to_playlist () # FUNCTION # Add the chosen songs to the playlist # OUTPUT # More songs in the playlist # SOURCE # sub add_to_playlist { debug("Add to playlist clicked"); my $selection = $widgets->{'main'}->get_object('treeAvailable')->get_selection; my ($sel, $model) = $selection->get_selected_rows; foreach my $path (@$sel) { add_single_song($model->get($model->get_iter($path), 3)); } update_playlist(); } #*** #****f* lyricue/add_single_song # NAME # add_single_song # SYNOPSIS # add_single_song ($availableSelection) # FUNCTION # Add a single song to the playlist # Optionally audit this addition # INPUTS # $availableSelection - Song id to add to the playlist # OUTPUT # One more song in the playlist # SOURCE # sub add_single_song { my ($availableSelection) = @_; debug("add single song"); # Drop out if no playlist selected if ($widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data} == -1) { return; } my ($playorder); my $query = "SELECT MAX(playorder) FROM playlist"; $sth = do_query($lyricDbh, $query, FALSE); if ($row = $sth->fetchrow_hashref()) { if ($row->{'MAX(playorder)'}) { $playorder = $row->{'MAX(playorder)'} + 1; } else { $playorder = 1; } } else { $playorder = 1; } # Find next playlists entry $query = "SELECT MAX(id) FROM playlists"; $sth = do_query($lyricDbh, $query, FALSE); $row = $sth->fetchrow_hashref(); my $playlist = $row->{'MAX(id)'} + 1; $query = "INSERT INTO playlist (playorder, playlist, data,type) VALUES (" . $playorder . "," . $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data} . "," . $playlist . ",\"play\")"; $sth = do_query($lyricDbh, $query, FALSE); # Find song info my $title = ""; $query = "SELECT title,pageid,keywords FROM lyricMain, page WHERE songid=id AND id=" . $availableSelection . " ORDER BY pagenum"; $sth = do_query($lyricDbh, $query, FALSE); my $audit = TRUE; while ($row = $sth->fetchrow_hashref()) { # Add the pages my $keywords = $row->{'keywords'}; if ($keywords =~ /^NOAUDIT /) { $audit = FALSE; } $title = $row->{'title'}; $playorder++; my $query2 = "INSERT INTO playlist (playorder, playlist, data,type) VALUES (" . $playorder . ", " . $playlist . "," . $row->{'pageid'} . ", \"song\")"; my $sth2 = do_query($lyricDbh, $query2, FALSE); } # Add playlists entry $query = "INSERT INTO playlists (id,title,profile,ref) VALUES (" . $playlist . ",\"" . $title . "\", \"" . $globals->{'profile'} . "\", " . $availableSelection . ")"; $sth = do_query($lyricDbh, $query, FALSE); # audit this addition # currently always runs due to problem with passing in widgets debug("Audit: $config->{'Audit'}"); if ($config->{'Audit'} && $audit) { $query = "SELECT MAX(id)+1 FROM audit"; $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array; if (!defined $row[0]) { $row[0] = "1"; } $query = "INSERT INTO audit (id,songid,playdate) VALUES(" . $row[0] . ", " . $availableSelection . ", NOW())"; debug("Auditing with: " . $query); $sth = do_query($lyricDbh, $query, FALSE); } } #*** #****f* lyricue/remove_from_playlist # NAME # remove_from_playlist # SYNOPSIS # remove_from_playlist () # FUNCTION # Remove selected songs from the playlist # OUTPUT # Less songs in the playlist # SOURCE # sub remove_from_playlist { debug("remove from playlist"); #Cancel any loop timers #Continuing to loop over possibly removed playlist #items represents a major crash risk - better safe #than sorry. # reset_timer($globals->{'timer'}); my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; debug("Remove from playlist clicked"); my ($model, $iter) = $selection->get_selected; if ($iter) { remove_single_item($model->get($iter, 2)); update_playlist(); } } #*** #****f* lyricue/remove_single_item # NAME # remove_single_item # SYNOPSIS # remove_single_item ($item) # FUNCTION # Remove a single song from the playlist # INPUTS # $item - Playlist Id to remove # OUTPUT # One less song on the playlist # SOURCE # sub remove_single_item { my ($item) = @_; debug("Deleting $item from playlist"); reset_timer($globals->{'timer'}); my $query = "SELECT type,data FROM playlist WHERE playorder=" . $item; my $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array; if ($row[0] eq "play" | $row[0] eq "sub") { $query = "SELECT playorder FROM playlist WHERE playlist=" . $row[1]; $sth = do_query($lyricDbh, $query, FALSE); while (my @row2 = $sth->fetchrow_array) { remove_single_item($row2[0]); } $query = "DELETE FROM playlist WHERE playlist=" . $row[1]; $sth = do_query($lyricDbh, $query, FALSE); $query = "DELETE FROM playlists WHERE id=" . $row[1]; $sth = do_query($lyricDbh, $query, FALSE); } $query = "DELETE FROM playlist WHERE playorder=" . $item; $sth = do_query($lyricDbh, $query, FALSE); $query = "DELETE FROM associations WHERE playlist=" . $item; $sth = do_query($lyricDbh, $query, FALSE); if (($row[0] eq "file") && ($row[1] =~ /^\/var\/tmp\/lyricue-/)) { # Removing temporary file my $command = "rm " . $row[1]; my $dir = $row[1]; $dir =~ s/^(\/var\/tmp\/lyricue-.*\/).*$/$1/g; # Check if used elsewhere $query = "SELECT playorder FROM playlist WHERE data=\"" . $row[1] . "\""; $sth = do_query($lyricDbh, $query, FALSE); if (@row = $sth->fetchrow_array) { debug("Temporary file used elsewhere - not removing"); return; } debug($command); system($command); # Check if directory empty my $ret = opendir DIR, $dir; if ($ret) { my $found = FALSE; foreach (sort readdir(DIR)) { if (!/^\.*$/) { $found = TRUE; } } if (!$found) { debug("Empty directory - removing"); $command = "rmdir " . $dir; debug($command); system($command); } } } elsif ($row[0] eq "temp") { my $pageid = $row[1]; # Check if used elsewhere $query = "SELECT playorder FROM playlist WHERE data=\"" . $pageid . "\""; $sth = do_query($lyricDbh, $query, FALSE); if (@row = $sth->fetchrow_array) { debug("Temporary page used elsewhere - not removing"); return; } $query = "DELETE FROM page WHERE pageid=" . $pageid; $sth = do_query($lyricDbh, $query, FALSE); } } #*** #****f* lyricue/clear_playlist # NAME # clear_playlist # SYNOPSIS # clear_playlist ($widget) # FUNCTION # Clear the playlist # INPUTS # $widget - Calling widget # OUTPUT # No songs in playlist # SOURCE # sub clear_playlist { my ($widget) = @_; debug("Clear playlist"); reset_timer($globals->{'timer'}); my $deletexml = load_window("dialogConfirm"); my $labelText = fromutf(gettext("Are you sure you wish to clear the current playlist?")); $deletexml->get_object('labelDelete')->set_text($labelText); $deletexml->get_object('dialogConfirm') ->set_title(fromutf(gettext("Confirm Clear Playlist"))); my $confirm = $deletexml->get_object('dialogConfirm')->run(); if ($confirm eq "ok") { my $main_playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; my $query = "SELECT playorder FROM playlist WHERE playlist=" . $main_playlist; $sth = do_query($lyricDbh, $query, FALSE); while (my @row = $sth->fetchrow_array()) { remove_single_item($row[0]); } update_playlist(); } close_dialog($deletexml->get_object('dialogConfirm')); } #*** #****f* lyricue/display_song # NAME # Display_song # SYNOPSIS # display_song (undef, $event) # FUNCTION # Display a song if double-clicked, or popup menu if right-clicked # INPUTS # $event - Calling event # OUTPUT # Updated display or right-click menu is popped-up # SOURCE # sub display_song { my ($widget, $path,, $column) = @_; debug("display song"); reset_timer($globals->{'timer'}); if ($globals->{'image_playlist'}) { my @list = $widgets->{'main'}->get_object('iconPlaylist')->get_selected_items; if (defined $list[0]) { my $model = $widgets->{'main'}->get_object('iconPlaylist')->get_model; my $iter = $model->get_iter($list[0][0]); update_display("display", $model->get($iter, 2), ""); } } else { my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { update_display("display", $model->get($iter, 2), ""); } } return TRUE; } sub treePlaylist_cursor_changed { my ($widget) = @_; debug("preview playlist item"); if (!$globals->{'image_playlist'}) { my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { my $transition = $model->get($iter, 3); # Set the transition values my $out_direction = mod($transition, 2**NUM_TRANS); $transition = $transition >> NUM_TRANS; my $in_direction = mod($transition, 2**NUM_TRANS); my $effect = $transition >> NUM_TRANS; if ($effect == NOTRANS) { $widgets->{'main'}->get_object('radioTransNone') ->set_active(TRUE); } elsif ($effect == FADE) { $widgets->{'main'}->get_object('radioTransFade') ->set_active(TRUE); } elsif ($effect == SLIDE_TEXT) { $widgets->{'main'}->get_object('radioTransSlide') ->set_active(TRUE); } elsif ($effect == ROTATE_TEXT) { $widgets->{'main'}->get_object('radioTransRotate') ->set_active(TRUE); } elsif ($effect == RANDOM) { $widgets->{'main'}->get_object('radioTransRandom') ->set_active(TRUE); } else { $widgets->{'main'}->get_object('radioTransDefault') ->set_active(TRUE); } my $indir = ""; if ($in_direction & UP) { $indir .= "Up" } if ($in_direction & DOWN) { $indir .= "Down" } if ($in_direction & LEFT) { $indir .= "Left" } if ($in_direction & RIGHT) { $indir .= "Right" } if ($indir eq "") { $indir = "None" } $widgets->{'main'}->get_object("toggleIn" . $indir) ->set_active(TRUE); $widgets->{'main'}->get_object("toggleRotX") ->set_active($in_direction & X_AXIS); $widgets->{'main'}->get_object("toggleRotY") ->set_active($in_direction & Y_AXIS); $widgets->{'main'}->get_object("toggleRotZ") ->set_active($in_direction & Z_AXIS); my $outdir = ""; if ($out_direction & UP) { $outdir .= "Up" } if ($out_direction & DOWN) { $outdir .= "Down" } if ($out_direction & LEFT) { $outdir .= "Left" } if ($out_direction & RIGHT) { $outdir .= "Right" } if ($outdir eq "") { $outdir = "None" } $widgets->{'main'}->get_object("toggleOut" . $outdir) ->set_active(TRUE); } } update_quickedit(); if ($config->{'DynamicPreview'}) { preview_playlist_item(); } } sub on_treePlaylist_button_press_event { my ($widget, $event) = @_; # Right-click menu if ($event->button == 3) { popup_play_menu($event); return TRUE; } return FALSE; } #*** #****f* lyricue/display_now # NAME # display_now # SYNOPSIS # display_now ($widget) # FUNCTION # Display now button clicked # INPUTS # $widget - Calling widget # OUTPUT # Display updated with currently selected song # SOURCE # sub display_now { my ($widget) = @_; debug("Display clicked"); reset_timer($globals->{'timer'}); my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { update_display("display", $model->get($iter, 2), ""); } } #*** #****f* lyricue/prev_page # NAME # prev_page # SYNOPSIS # prev_page () # FUNCTION # Display the previous page in the server # INPUTS # none # OUTPUT # Calls update_display # SOURCE # sub prev_page { debug("Prev clicked"); reset_timer($globals->{'timer'}); update_display("display", "prev_page", $config->{'LoopText'}); } #*** #****f* lyricue/next_page # NAME # next_page # SYNOPSIS # next_page () # FUNCTION # Display the next page in the server # INPUTS # None # OUTPUT # Calls update_display # SOURCE # sub next_page { debug("Next clicked"); reset_timer($globals->{'timer'}); update_display("display", "next_page", $config->{'LoopText'}); } #*** #****f* lyricue/prev_song # NAME # prev_song # SYNOPSIS # prev_song () # FUNCTION # Display the previous song in the server # INPUTS # none # OUTPUT # Calls update_display # SOURCE # sub prev_song { debug("Prev clicked"); reset_timer($globals->{'timer'}); update_display("display", "prev_song", $config->{'LoopText'}); } #*** #****f* lyricue/next_song # NAME # next_song # SYNOPSIS # next_song () # FUNCTION # Display the next song in the server # INPUTS # None # OUTPUT # Calls update_display # SOURCE # sub next_song { debug("Next clicked"); reset_timer($globals->{'timer'}); update_display("display", "next_song", $config->{'LoopText'}); } #*** #****f* lyricue/blank_page # NAME # blank_page # SYNOPSIS # blank_page () # FUNCTION # Blank the server # INPUTS # None # OUTPUT # Calls update_display # SOURCE # sub blank_page { my ($widget) = @_; if ($globals->{'ignore_blank'}) { debug("ignore blank"); $globals->{'ignore_blank'} = FALSE; return; } debug("Blank page clicked"); reset_timer($globals->{'timer'}); update_display("blank", $config->{'BGImage'}, ""); } #*** #****f* lyricue/clear_text # NAME # clear_text # SYNOPSIS # clear_text () # FUNCTION # Clear the server text # INPUTS # None # OUTPUT # Calls update_display # SOURCE # sub clear_text { my ($widget) = @_; if ($globals->{'ignore_clear'}) { $globals->{'ignore_clear'} = FALSE; debug("ignore clear"); return; } debug("Clear text clicked"); reset_timer($globals->{'timer'}); update_display("blank", "", ""); } #*** #****f* lyricue/reshow_page # NAME # reshow_page # SYNOPSIS # reshow_page() # FUNCTION # Reshow the current page # INPUTS # None # OUTPUT # Calls update_display # SOURCE # sub reshow_page { my ($widget) = @_; debug("Reshow page clicked"); reset_timer($globals->{'timer'}); update_display("display", "current", ""); } #*** #****f* lyricue/next_point # NAME # next_point # SYNOPSIS # next_point () # FUNCTION # Display the next point in the server # INPUTS # None # OUTPUT # Calls update_display # SOURCE # sub next_point { debug("Next point clicked"); reset_timer($globals->{'timer'}); update_display("next_point", "", ""); } #*** #****f* lyricue/preview_page # NAME # preview_page # SYNOPSIS # preview_page ($widget) # FUNCTION # Preview a page in the server # INPUTS # $widget - Calling widget # OUTPUT # Calls update_display # SOURCE # sub preview_page { my ($widget, $type) = @_; debug("preview page $type"); reset_timer($globals->{'timer'}); my $current_page = $widgets->{'add'}->get_object('notebookEditPages')->get_current_page() + 1; my $current_hash = 1; debug($current_page . " page "); my $label = $widgets->{'labelAPage'}; foreach (keys %$label) { if ($widgets->{'labelAPage'}{$_}->get_text() eq fromutf(gettext("Page ")) . $current_page) { $current_hash = $_; } } debug($current_hash . " hash"); #join all the strings together so update display will accept them, removing #any newlines or semicolons that would upset the split on the other end. my $titledata = $widgets->{'add'}->get_object('entryEditName')->get_text() . "#BREAK#" . $widgets->{'add'}->get_object('entryEditArtist')->get_text() . "#BREAK#" . $widgets->{'add'}->get_object('entryEditCopyright')->get_text() . "#BREAK#wrap"; $titledata =~ s/:/#SEMI#/g; my $songtext = get_buffer_text($widgets->{'textAPageB'}{$current_hash}); $songtext =~ s/\n/#BREAK#/g; $songtext =~ s/:/#SEMI#/g; if ($type eq "SERVER") { update_display("preview", $titledata, $songtext); } else { preview_display("preview", $titledata, $songtext, FALSE); } } #*** #****f* lyricue/preview_pageid # NAME # preview_pageid # SYNOPSIS # preview_pageid ($pageid) # FUNCTION # Preview a pageid in the server # INPUTS # $widget - Calling widget # OUTPUT # Calls update_display # SOURCE # sub preview_pageid { my ($pageid) = @_; debug("preview pageid"); reset_timer($globals->{'timer'}); my $query = "SELECT lyrics, pagetitle FROM page WHERE pageid=" . $pageid; $sth = do_query($lyricDbh, $query, FALSE); $row = $sth->fetchrow_hashref(); if (defined $row) { #join all the strings together so update display will accept them, removing #any newlines or semicolons that would upset the split on the other end. my $songtext = ($row->{'lyrics'}); my $pagetitle = ($row->{'pagetitle'}); $songtext =~ s/\n/#BREAK#/g; $songtext =~ s/:/#SEMI#/g; $pagetitle =~ s/\n/#BREAK#/g; $pagetitle =~ s/:/#SEMI#/g; preview_display("preview", $pagetitle, $songtext, FALSE); } } #*** #****f* lyricue/add_verse # NAME # add_verse # SYNOPSIS # add_verse ($widget) # FUNCTION # Add Verse clicked # INPUTS # $widget - Calling widget # OUTPUT # Calls create_dialogBook # SOURCE # sub add_verse { debug("Add verse clicked"); if ((!defined $globals->{'bibledb'}) || ($globals->{'bibledb'} eq "")) { display_message($errorcodes->{'nobible'}); } else { my $bookxml = load_window("windowBook"); $bookxml->get_object('windowBook')->show; } } #*** #****f* lyricue/add_image_pl # NAME # add_image_pl # SYNOPSIS # add_image_pl() # FUNCTION # Add an image to the playlist # INPUTS # OUTPUT # New item on playlist # SOURCE # sub add_image_pl { debug("Add image to playlist clicked"); my $widget = $widgets->{'main'}->get_object('iconviewImage'); my $selected = ""; my @list = $widget->get_selected_items; if (defined $list[0]) { my $model = $widget->get_model; my $iter = $model->get_iter($list[0][0]); $selected = $model->get($iter, 2); } if ($selected ne "") { my $playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; if ($playlist != -1) { add_image_item($playlist, $selected); update_playlist(); } } } #*** #****f* lyricue/add_file_pl # NAME # add_file_pl # SYNOPSIS # add_file_pl() # FUNCTION # Add a file to the playlist # INPUTS # OUTPUT # New item on playlist # SOURCE # sub add_file_pl { debug("Add file to playlist clicked"); my $main_playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; my $filenames = $widgets->{'main'}->get_object('fileAddFile')->get_filenames; foreach my $file (@$filenames) { do_add_file($file, $main_playlist); } update_playlist(); } #*** #****f* lyricue/add_image # NAME # add_image # SYNOPSIS # add_image () # FUNCTION # Load the image dialog # INPUTS # OUTPUT # dialogImage loaded # SOURCE # sub add_image { debug("Add image clicked"); $widgets->{'image'} = load_window("dialogImage"); $widgets->{'image'}->get_object('buttonImageAdd') ->signal_connect(clicked => \&import_image); $widgets->{'image'}->get_object('dialogImage')->show; if ($widgets->{'image'}->get_object('treeImage')->{user_data} && ($widgets->{'image'}->get_object('treeImage')->{user_data} eq "load") ) { $widgets->{'image'}->get_object('treeImage')->{data} = (); } else { $widgets->{'image'}->get_object('treeImage')->{user_data} = "load"; my $renderer = Gtk3::CellRendererText->new; $renderer->set("editable", TRUE); $renderer->signal_connect(edited => \&rename_media); my $column = Gtk3::TreeViewColumn->new_with_attributes("Filename", $renderer, text => 0); $widgets->{'image'}->get_object('treeImage')->append_column($column); $widgets->{'image'}->get_object('treeImage') ->get_selection->set_mode('multiple'); $widgets->{'image'}->get_object('buttonImageOK') ->signal_connect(clicked => \&close_dialog); } # Fill sublists dropbox my $store = $widgets->{'image'}->get_object('optionImageSublist')->get_model(); if ($store) { $store->clear; } else { $store = Gtk3::ListStore->new('Glib::String', 'Glib::Uint'); $widgets->{'image'}->get_object('optionImageSublist') ->set_model($store); } my $cell = Gtk3::CellRendererText->new; $widgets->{'image'}->get_object('optionImageSublist') ->pack_start($cell, TRUE); $widgets->{'image'}->get_object('optionImageSublist') ->add_attribute($cell, text => 0); my $playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; my $query = "SELECT title, data FROM playlist, playlists WHERE playlist.data = playlists.id AND playlist = " . $playlist . " AND type = 'sub'"; my $sth = do_query($lyricDbh, $query, FALSE); $store->set($store->append, 0, "Main", 1, $playlist); $widgets->{'image'}->get_object('optionImageSublist')->set_active(0); while ($row = $sth->fetchrow_hashref()) { $store->set($store->append, 0, $row->{'title'}, 1, $row->{'data'}); my @childid = find_more_children($row->{'data'}); foreach (@childid) { debug("Child sublist found. ID: " . $_); my $query2 = "SELECT title FROM playlists WHERE id=" . $_; my $sth2 = do_query($lyricDbh, $query2, FALSE); my $row2 = $sth2->fetchrow_hashref(); $store->set($store->append, 0, $row2->{'title'}, 1, $row2->{'data'}); } } update_imagedir("img", ""); } #*** #****f* lyricue/update_imagedir # NAME # update_imagedir # SYNOPSIS # update_imagedir($type, $data) # FUNCTION # Update the view of an category # INPUTS # $type - 'img' or 'bg' # $data - Category/type to load # OUTPUT # Updated list of images # SOURCE # sub update_imagedir { my ($type, $data) = @_; my ($access, $category); debug("update image directory"); my $main = ""; if ($type eq "bg") { $main = $config->{'SpecialBack'}; } else { $main = $config->{'SpecialImage'}; } if ($data eq "") { $data = $main; } ($access, $category) = split /;/, $data; if (!defined $category) { $category = $access; $access = "db"; } debug("changing to $access;$category"); # Update categories list $widgets->{'image'}->get_object('optionImageCategory')->{'user_data'} = $type; $widgets->{'image'}->get_object('treeImage')->{'user_data'} = $data; my $store = $widgets->{'image'}->get_object('optionImageCategory')->get_model(); if ($store) { $store->clear; } else { $store = Gtk3::ListStore->new('Glib::String', 'Glib::String'); $widgets->{'image'}->get_object('optionImageCategory') ->set_model($store); my $cell = Gtk3::CellRendererText->new; $widgets->{'image'}->get_object('optionImageCategory') ->pack_start($cell, TRUE); $widgets->{'image'}->get_object('optionImageCategory') ->add_attribute($cell, text => 0); } # Add default category my $iter = $store->append; $store->set($iter, 0, $main, 1, $main); if ($main eq $data) { $widgets->{'image'}->get_object('optionImageCategory') ->set_active_iter($iter); } $query = "SELECT DISTINCT category FROM media WHERE type=\"" . $type . "\" AND category != \"" . $main . "\" ORDER BY category"; $sth = do_query($mediaDbh, $query, FALSE); while ($row = $sth->fetchrow_hashref()) { $store->set($store->append, 0, $row->{'category'}, 1, "db;" . $row->{'category'}); } # Add categories from directories my $dirname = ""; if ($type eq "bg") { $dirname = $config->{'BGDirectory'}; } else { $dirname = $config->{'ImageDirectory'}; } my (@files, $file); my $ret = opendir DIR, $dirname; if ($ret) { foreach $file (sort readdir(DIR)) { if (!($file =~ /^\./) && (-d $dirname . "/" . $file)) { my $iter = $store->append; $store->set($iter, 0, $file, 1, "dir;" . $file); if ("dir;" . $file eq $data) { $widgets->{'image'}->get_object('optionImageCategory') ->set_active_iter($iter); } debug($file); } } closedir DIR; } # Load list of files $store = Gtk3::ListStore->new('Glib::String', 'Glib::String'); if ($access eq "dir") { my $dirname = ""; if ($type eq "bg") { $dirname = $config->{'BGDirectory'} . "/" . $category; } else { $dirname = $config->{'ImageDirectory'} . "/" . $category; } my $ret = opendir DIR, $dirname; if ($ret) { my $file = ""; foreach $file (sort readdir(DIR)) { if (!($file =~ /^\./)) { $iter = $store->append; $store->set($iter, 0, $file, 1, "dir;" . $dirname . "/" . $file); } } } } if ($access eq "db") { # update list of available images $query = "SELECT * FROM media WHERE category LIKE \"" . $category . "\" AND type=\"" . $type . "\" ORDER BY description"; $sth = do_query($mediaDbh, $query, FALSE); while ($row = $sth->fetchrow_hashref()) { $iter = $store->append; $store->set($iter, 0, $row->{'description'}, 1, "db;" . $row->{'id'}); } } $widgets->{'image'}->get_object('treeImage')->set_model($store); $widgets->{'image'}->get_object('entryImageFontColour') ->set_text("Default"); my $rgba = Gtk3::Gdk::RGBA->new(0,0,0,0); $rgba->parse($config->{'Colour'}); $widgets->{'image'}->get_object('colorbuttonFontColour') ->set_rgba($rgba); $widgets->{'image'}->get_object('entryImageShadowColour') ->set_text("Default"); $rgba->parse($config->{'ShadowColour'}); $widgets->{'image'}->get_object('colorbuttonShadowColour') ->set_rgba($rgba); } #*** #****f* lyricue/change_image_category # NAME # change_image_category # SYNOPSIS # change_image_category() # FUNCTION # change image category # INPUTS # OUTPUT # SOURCE # sub change_image_category { my $iter = $widgets->{'image'}->get_object('optionImageCategory')->get_active_iter; if (defined $iter) { debug("change image category"); my $category = $widgets->{'image'}->get_object('optionImageCategory') ->get_model->get($iter, 1); if (defined $category) { if ($widgets->{'image'}->get_object('treeImage')->{user_data} ne $category) { update_imagedir( $widgets->{'image'}->get_object('optionImageCategory') ->{'user_data'}, $category ); } } debug("done"); } } #*** #****f* lyricue/update_display # NAME # update_display # SYNOPSIS # update_display ($command, $primary, $secondary) # FUNCTION # Open a connection the the server and send a command. Status is returned # INPUTS # $command - Command to send # $primary - First parameter to send # $secondary - Second parameter to send # OUTPUT # Updated display # SOURCE # sub update_display { my ($command, $primary, $secondary) = @_; debug("update display"); my $biblechanged = ""; if ($globals->{'access'} !~ /s/) { $command = ""; $primary = ""; $secondary = ""; } if (!defined($secondary)) { $secondary = ""; } if (!defined($primary)) { $primary = ""; } $primary =~ s/:/#SEMI#/g; $secondary =~ s/:/#SEMI#/g; debug("Command: " . $command . ":" . $primary . ":" . $secondary); if (keys(%$displays) == 0) { debug("No displays running"); return; } foreach my $display (keys %$displays) { if ($displays->{$display}) { my @display_items = split(/:/, $display); debug("Updating " . $display); if ( my $server = IO::Socket::INET->new( Proto => "tcp", PeerAddr => $display_items[0], PeerPort => $display_items[1] ) ) { print $server toutf( $command . ":" . $primary . ":" . $secondary . "\n"); close($server); } } } } #*** #****f* lyricue/preview_playlist_item # NAME # preview_playlist_item # SYNOPSIS # preview_playlist_item() # FUNCTION # Preview a playlist item # INPUTS # # OUTPUT # Updated preview # SOURCE # sub preview_playlist_item { debug("Previewing a playlist item..."); if ($globals->{'image_playlist'}) { my @list = $widgets->{'main'}->get_object('iconPlaylist')->get_selected_items; if (defined $list[0]) { my $model = $widgets->{'main'}->get_object('iconPlaylist')->get_model; my $iter = $model->get_iter($list[0][0]); preview_display("display", $model->get($iter, 2), undef, FALSE); } } else { my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { # display item preview_display("display", $model->get($iter, 2), undef, FALSE); } } } #*** #****f* lyricue/preview_display # NAME # preview_display # SYNOPSIS # preview_display () # FUNCTION # Issues commands to the preview server # INPUTS # OUTPUT # Updated display # SOURCE # sub preview_display { my ($command, $primary, $secondary, $checkret) = @_; debug("Preview display"); if (!defined($secondary)) { $secondary = ""; } if (!defined($primary)) { $primary = ""; } $primary =~ s/:/#SEMI#/g; $secondary =~ s/:/#SEMI#/g; debug("Preview command: " . $command . ":" . $primary . ":" . $secondary); my $display = 0; if (scalar keys %$previews == 0) { debug("No preview displays running"); return; } foreach my $display (keys %$previews) { my @display_items = split(/:/, $display); debug("Updating Preview " . $display); if ( my $server = IO::Socket::INET->new( Proto => "tcp", PeerAddr => $display_items[0], PeerPort => $display_items[1] ) ) { print $server toutf( $command . ":" . $primary . ":" . $secondary . "\n"); if ($checkret) { if (defined(my $status = <$server>)) { $status = fromutf($status); chomp($status); } } } } } #*** #****f* lyricue/open_dialogColour # NAME # open_dialogColour # SYNOPSIS # open_dialogColour($widget, $event, $item) # FUNCTION # Load a new dialog to select a colour # INPUTS # $widget - Calling widget # $event - how we where called # $item - What we want to set the colour for # OUTPUT # # SOURCE # sub open_dialogColour { my ($widget, $event, $item) = @_; debug("Opening Colour dialog"); debug("open_dialogColour: item=" . $item); debug("open_dialogColour: widget=" . $widget->get_name()); my $d = Gtk3::ColorChooserDialog->new(fromutf(gettext("Select ")) . $item . fromutf(gettext(" Colour"))); $d->set_use_alpha(FALSE); my $colour=Gtk3::Gdk::RGBA->new(0,0,0,0); if ($item eq "Font"){ $colour->parse($widgets->{'prefs'}->get_object('entryPrefColour')->get_text()); } elsif ($item eq "Shadow") { $colour->parse($widgets->{'prefs'}->get_object('entryPrefShadowColour')->get_text()); } elsif ($item eq "ImageFont") { $colour=$widget->get_rgba(); } elsif ($item eq "ImageShadow") { $colour=$widget->get_rgba(); } $d->set_rgba($colour); my $response = $d->run(); if ($response eq "ok") { my $colour_out=sprintf("#%02x%02x%02x",$d->get_rgba->red * 255,$d->get_rgba->green * 255,$d->get_rgba->blue * 255); change_font_colour($item, $colour_out); } $d->destroy; } #*** #****f* lyricue/open_dialogFont # NAME # open_dialogFont # SYNOPSIS # open_dialogFont ($widget, $event, $font) # FUNCTION # Load a new dialog to select a colour # INPUTS # $widget - Calling widget # $event - how we where called # $font - What we want to set the colour for # OUTPUT # # SOURCE # sub open_dialogFont { my ($widget, $event, $font) = @_; debug("Opening Font dialog"); $widgets->{'font'} = load_window("dialogFont"); my $fontname = $config->{$font}; $widgets->{'font'}->get_object('dialogFont')->set_font($fontname); my $confirm = $widgets->{'font'}->get_object('dialogFont')->run(); if ($confirm eq "ok") { $widgets->{'prefs'}->get_object('entryPref' . $font) ->set_text($widgets->{'font'}->get_object('dialogFont')->get_font); } close_dialog($widgets->{'font'}->get_object('dialogFont')); } #*** #****f* lyricue/change_font_colour # NAME # change_font_colour # SYNOPSIS # change_font_colour ($item, $colour) # FUNCTION # Change the font colour # INPUTS # $item - Item to change # $colour - The Colour to set # OUTPUT # Updated config file and server # SOURCE # sub change_font_colour { my ($item, $colour) = @_; debug("change_font_colour: item=" . $item); my $rgba = Gtk3::Gdk::RGBA->new(0,0,0,0); if ($item eq "Shadow") { $widgets->{'prefs'}->get_object('entryPrefShadowColour') ->set_text($colour); } elsif ($item eq "Font") { $widgets->{'prefs'}->get_object('entryPrefColour')->set_text($colour); } elsif ($item eq "ImageShadow") { $widgets->{'image'}->get_object('entryImageShadowColour') ->set_text($colour); $rgba->parse($colour); $widgets->{'image'}->get_object('colorbuttonShadowColour') ->set_rgba($rgba); change_colour_media(); } elsif ($item eq "ImageFont") { $rgba->parse($colour); $widgets->{'image'}->get_object('entryImageFontColour') ->set_text($colour); $widgets->{'image'}->get_object('colorbuttonFontColour') ->set_rgba($rgba); change_colour_media(); } } #*** #****f* lyricue/changeVerseStatus # NAME # changeVerseStatus # SYNOPSIS # changeVerseStatus ($widget, $section, $row, $col, $rows, $max) # FUNCTION # Make sure you can't choose multiple values for start or finish # INPUTS # $widget - Calling widget # $event # $max - Maximum value # OUTPUT # Only one value chosen in start or finish area # SOURCE # sub changeVerseStatus { my ($widget, $event, $max) = @_; debug("Change verse status".$globals->{'verseStart'}."-".$globals->{'verseEnd'}); my $number = $widget->get_label; if (defined($event->type)) { my $begin = 0; my $end = 0; if ($event->type eq 'button-press') { if ( ($globals->{'verseEnd'} == 0) && ($globals->{'verseStart'} != 0)) { if ($number < $globals->{'verseStart'}) { $globals->{'verseEnd'} = $globals->{'verseStart'}; $globals->{'verseStart'} = $number; } else { $globals->{'verseEnd'} = $number; } debug( "End " . $globals->{'verseStart'} . "," . $globals->{'verseEnd'}); $begin = $globals->{'verseStart'}; $end = $globals->{'verseEnd'}; } else { debug("Start " . $globals->{'verseStart'}); $globals->{'verseStart'} = $number; $globals->{'verseEnd'} = 0; $begin = $globals->{'verseStart'}; $end = $globals->{'verseStart'}; } my $book = $widgets->{'main'}->get_object('entryNavVerse') ->get_active_text(); my $verse = ""; $book =~ s/:.*$//g; $verse = $book . ":" . $begin . "-" . $end; $widgets->{'main'}->get_object('entryNavVerse')->get_child ->set_text($verse); navigator_update(); } elsif ($event->type eq 'enter-notify') { $begin = 0; if ( (defined $globals->{'verseStart'}) && ($globals->{'verseStart'} != 0) && ($globals->{'verseEnd'} == 0)) { if ($number < $globals->{'verseStart'}) { $begin = $number; $end = $globals->{'verseStart'}; } else { $begin = $globals->{'verseStart'}; $end = $number; } } } if ($begin != 0) { foreach my $num (1 .. $max) { my $button = "button" . ($num - 1); if (($num >= $begin) && ($num <= $end)) { $widgets->{'bibleBrowser'}{$button}->set_active(TRUE); } else { $widgets->{'bibleBrowser'}{$button}->set_active(FALSE); } } return TRUE; } } return FALSE; } #*** #****f* lyricue/change_preview # NAME # change_preview # SYNOPSIS # change_preview ($widget) # FUNCTION # Change the preview in the image dialog # INPUTS # $widget - Calling widget # OUTPUT # Change previews # SOURCe # sub change_preview { debug("Changing Preview"); my $selection = $widgets->{'image'}->get_object('treeImage')->get_selection; my ($selecteditems, $model) = $selection->get_selected_rows(); if (@$selecteditems[0]) { # Find what has changed my $newsel = @$selecteditems[0]; my $iter = $model->get_iter($newsel); my $data = $model->get($iter, 1); my ($type, $id) = split /;/, $data; my $tmp = 0; foreach $tmp (@$selecteditems) { my $iter2 = $model->get_iter($tmp); my $data2 = $model->get($iter2, 1); $data = $data2; ($type, $id) = split /;/, $data; } %selectedimages = (); foreach $tmp (@$selecteditems) { my $iter2 = $model->get_iter($tmp); my $id2 = $model->get($iter2, 1); $selectedimages{$id2} = TRUE; } if ($globals->{'bg_previews'}) { debug("sub change_preview: create_pixbuf"); my $scaled = create_pixbuf($data, 480, 360); if ($scaled) { my ($row, $query); if ($type eq "db") { $query = "SELECT textcolour, shadowcolour FROM media WHERE id=\"" . $id . "\""; } else { $query = "SELECT textcolour, shadowcolour FROM media WHERE format=\"file\" AND category=\"" . $id . "\""; } my $sth = do_query($mediaDbh, $query, FALSE); $row = $sth->fetchrow_hashref(); if ($row) { $widgets->{'image'}->get_object('buttonImageDelete') ->set_sensitive(TRUE); $widgets->{'image'}->get_object('buttonImageChange') ->set_sensitive(TRUE); $widgets->{'image'}->get_object('hboxImageColour') ->show_all; } else { $row->{'textcolour'} = "Default"; $row->{'shadowcolour'} = "Default"; } my $rgba = Gtk3::Gdk::RGBA->new(0,0,0,0); my $fg_span = ""; my $bg_span = ""; if ( ($row->{'textcolour'} ne "") && ($row->{'textcolour'} ne "NULL") && ($row->{'textcolour'} ne "Default")) { $widgets->{'image'}->get_object('entryImageFontColour') ->set_text($row->{'textcolour'}); $rgba->parse($row->{'textcolour'}); $widgets->{'image'}->get_object('colorbuttonFontColour') ->set_rgba($rgba); $fg_span = "{'textcolour'} . "\">"; } else { $widgets->{'image'}->get_object('entryImageFontColour') ->set_text("Default"); $rgba->parse($config->{'Colour'}); $widgets->{'image'}->get_object('colorbuttonFontColour') ->set_rgba($rgba); $fg_span = "{'Colour'} . "\">"; } if ( ($row->{'shadowcolour'} ne "") && ($row->{'shadowcolour'} ne "NULL") && ($row->{'shadowcolour'} ne "Default")) { $widgets->{'image'}->get_object('entryImageShadowColour') ->set_text($row->{'shadowcolour'}); $rgba->parse($row->{'shadowcolour'}); $widgets->{'image'}->get_object('colorbuttonShadowColour') ->set_rgba($rgba); $bg_span = "{'shadowcolour'} . "\">"; } else { $widgets->{'image'}->get_object('entryImageShadowColour') ->set_text("Default"); $rgba->parse($config->{'ShadowColour'}); $widgets->{'image'}->get_object('colorbuttonShadowColour') ->set_rgba($rgba); $bg_span = "{'ShadowColour'} . "\">"; } # Add text overlay to $scaled #my $pixmap = $scaled->render_pixmap_and_mask(127); #my $pango_layout = # $widgets->{'image'}->get_object('imageImage') # ->create_pango_layout(""); #$pango_layout->set_font_description( # Pango::FontDescription->from_string($config->{'Main'})); #my $gc = Gtk3::Gdk::GC->new($pixmap); #$pango_layout->set_markup( # $bg_span . fromutf(gettext("Song Contents")) . ""); #my ($text_w, $text_h) = $pango_layout->get_pixel_size(); #my $text_x = (480 - $text_w) / 2; #my $text_y = (360 - $text_h) / 2; #$pixmap->draw_layout( # $gc, # $text_x + 2, # $text_y + 2, # $pango_layout #); #$pango_layout->set_markup( # $fg_span . fromutf(gettext("Song Contents")) . ""); #$pixmap->draw_layout($gc, $text_x, $text_y, $pango_layout); #$widgets->{'image'}->get_object('imageImage') # ->set_from_pixmap($pixmap, undef); $widgets->{'image'}->get_object('imageImage')->{user_data} = $data; } } } return TRUE; } #*** #****f* lyricue/set_default_backdrop # NAME # set_default_backdrop # SYNOPSIS # set_default_backdrop ($widget) # FUNCTION # Change the default background in the config file # INPUTS # $widget - Calling widget # OUTPUT # Updated config file # SOURCE # sub set_default_backdrop { my ($widget) = @_; debug("Set default backdrop"); my $image = $widgets->{'image'}->get_object('imageImage')->{user_data}; if ($image) { my $scaled = create_pixbuf( $image, $globals->{'icon_width'}, $globals->{'icon_height'} ); if ($scaled) { $widgets->{'prefs'}->get_object('imagePrefBG') ->set_from_pixbuf($scaled); $widgets->{'prefs'}->get_object('imagePrefBG')->{user_data} = $image; } } close_dialog($widget); } #*** #****f* lyricue/print_songs # NAME # print_songs # SYNOPSIS # print_songs () # FUNCTION # Print a html formatted list of available songs # OUTPUT # HTML list of songs to standard out # SOURCE # sub print_songs { debug("Print html formatted song list"); my $lyricDbh = db_connect($globals->{'lyricdb'}, $errorcodes->{'lyricdbopen'}, TRUE); my $query = "SELECT COUNT(id) FROM lyricMain WHERE id > 0;"; my $sth = do_query($lyricDbh, $query, FALSE); my @totals = $sth->fetchrow_array(); $query = "SELECT title,book,songnum,artist FROM lyricMain WHERE id > 0 ORDER BY title;"; $sth = do_query($lyricDbh, $query, FALSE); print "\n"; print "\nLyricue: " . fromutf(gettext("Available songs")) . "\n"; print "\n"; print "\n\n"; print "
\n"; print "

Lyricue: " . fromutf(gettext("Available songs")) . "

\n"; print "

" . gettext("Total number of songs available") . " : " . $totals[0] . "

\n"; print "\n"; print ""; print ""; print ""; print "\n"; my @row; while (@row = $sth->fetchrow_array()) { print ""; foreach (@row) { if ($_ eq "") { $_ = " "; } print ""; } print "\n"; } print "
" . fromutf(gettext("Song Name")) . "" . fromutf(gettext("Song Book")) . "" . fromutf(gettext("Song Number")) . "" . fromutf(gettext("Artist")) . "
" . $_ . "
\n
\n\n\n"; $lyricDbh->disconnect; exit; } #*** #****f* lyricue/backdrop_clicked # NAME # backdrop_clicked # backdrop_clicked ($widget) # FUNCTION # A background has been clicked son change the bg in the server and update the two previews on the main window # INPUTS # $widget - Calling widget # OUTPUT # Updated bg # SOURCE # sub backdrop_clicked { my ($widget, $event) = @_; debug("Backdrop clicked"); # Right-click menu if ($event->button == 3) { popup_backdrop_menu($widget, $event); return TRUE; } if ($event->type eq '2button-press') { my $selected = ""; my @list = $widget->get_selected_items; if (defined $list[0]) { my $model = $widget->get_model; my $iter = $model->get_iter($list[0][0]); $selected = $model->get($iter, 2); } if ($selected eq "") { return; } #$widget->unselect_all; if (@ASSOCIATE) { associate_bg($selected); } else { debug("Changing backdrop to " . $selected); if ($globals->{'bg_previews'}) { my $prevFile = $selected; my $scaled = create_pixbuf( $widgets->{'buttonCurr'}->{user_data}, $globals->{'icon_width'}, $globals->{'icon_height'} ); if ($scaled) { $widgets->{'pixmapPrev'}->set_from_pixbuf($scaled); $widgets->{'buttonPrev'}->{user_data} = $widgets->{'buttonCurr'}->{user_data}; } $scaled = create_pixbuf( $prevFile, $globals->{'icon_width'}, $globals->{'icon_height'} ); if ($scaled) { $widgets->{'pixmapCurr'}->set_from_pixbuf($scaled); $widgets->{'buttonCurr'}->{user_data} = $prevFile; } update_display("backdrop", $prevFile, ""); preview_display("backdrop", $prevFile, "", FALSE); } } } } #*** #****f* lyricue/backdrop_preview_clicked # NAME # backdrop_preview_clicked # SYNOPSIS # backdrop_preview_clicked($widget) # FUNCTION # Changing backdrop to # INPUTS # $widget - # OUTPUT # SOURCE # sub backdrop_preview_clicked { my ($widget) = @_; my $selected = $widget->{user_data}; debug("Changing backdrop to " . $selected); if ($globals->{'bg_previews'}) { my $prevFile = $selected; my $scaled = create_pixbuf( $widgets->{'buttonCurr'}->{user_data}, $globals->{'icon_width'}, $globals->{'icon_height'} ); if ($scaled) { $widgets->{'pixmapPrev'}->set_from_pixbuf($scaled); $widgets->{'buttonPrev'}->{user_data} = $widgets->{'buttonCurr'}->{user_data}; } $scaled = create_pixbuf( $prevFile, $globals->{'icon_width'}, $globals->{'icon_height'} ); if ($scaled) { $widgets->{'pixmapCurr'}->set_from_pixbuf($scaled); $widgets->{'buttonCurr'}->{user_data} = $prevFile; } update_display("backdrop", $prevFile, ""); preview_display("backdrop", $prevFile, "", FALSE); } } #*** #****f* lyricue/do_add_image # NAME # do_add_image # SYNOPSIS # do_add_image () # FUNCTION # Add an image to the playlist # OUTPUT # Image added to playlist # SOURCE # sub do_add_image { my ($widget) = @_; debug("do add image"); my $selection = $widgets->{'image'}->get_object('treeImage')->get_selection; my ($list, $model) = $selection->get_selected_rows(); my $playlist = $widgets->{'image'}->get_object('optionImageSublist') ->get_menu->get_active->{'user_data'}; foreach (@$list) { my $image = $model->get($model->get_iter($_), 1); add_image_item($playlist, $image); } close_dialog($widget); update_playlist(); } #*** #****f* lyricue/add_item # NAME # add_item # SYNOPSIS # add_item($playlist, $type, $data) # FUNCTION # debug($image); # INPUTS # $playlist - # $type # $data # OUTPUT # SOURCE # sub add_item { my ($playlist, $type, $data) = @_; my $playorder = 1; my $query = "SELECT MAX(playorder) FROM playlist"; my $sth = do_query($lyricDbh, $query, FALSE); if ($row = $sth->fetchrow_hashref()) { if ($row->{'MAX(playorder)'}) { $playorder = $row->{'MAX(playorder)'} + 1; } } debug($data); $query = "INSERT INTO playlist (playorder, playlist, type, data) VALUES (" . $playorder . ", " . $playlist . ", \"" . $type . "\", \"" . $data . "\")"; $sth = do_query($lyricDbh, $query, FALSE); #if ($type eq "imag") { # if ($data =~ /^dir;/) { # $data =~ s/^dir;//g; # $type="file"; # } #} if (($type eq "file") || ($type eq "imag")) { if ($type eq "file") { $data = "dir;" . $data; } my $scaled = create_pixbuf( $data, $globals->{'snapshot_width'}, $globals->{'snapshot_height'} ); if ($scaled) { my $snapshot = $scaled->save_to_buffer("jpeg"); my $data = ""; foreach my $c (@$snapshot) { $data .= chr($c); } $sth = $lyricDbh->prepare( q{UPDATE playlist SET snapshot = ? WHERE playorder=?}) || database_failure($errorcodes->{'sqlprepare'}, $! . "\nSQL: UPDATE playlist SET snapshot = ? WHERE playorder=?"); my $rv = $sth->execute($data, $playorder) || database_failure($errorcodes->{'sqlexecute'}, $! . "\nSQL: UPDATE playlist SET snapshot = ? WHERE playorder=?"); } } $playorder++; return $playorder; } #*** #****f* lyricue/add_image_item # NAME # add_image_item # SYNOPSIS # add_image_item($playlist, $image) # FUNCTION # debug($image); # INPUTS # $playlist - # $image - # OUTPUT # SOURCE # sub add_image_item { my ($playlist, $image) = @_; add_item($playlist, "imag", $image); } #*** #****f* lyricue/show_about # NAME # show_about # SYNOPSIS # chose_about() # FUNCTION # Open the About dialog # OUTPUT # About dialog # SOURCE # sub show_about { debug("Showing About dialog"); my $xml = load_window("windowAbout"); my $abouttext = $xml->get_object('labelVersion')->get_text(); $abouttext =~ s/#VERSION#/$globals->{'version'}/g; $xml->get_object('labelVersion')->set_text($abouttext); $xml->get_object('windowAbout')->show(); } #*** #****f* lyricue/choose_playlist # NAME # choose_playlist # SYNOPSIS # choose_playlist ( ) # FUNCTION # Open a dialog to choose your main playlist # OUTPUT # Search dialog # SOURCE # sub choose_playlist { debug("Choose playlist"); $widgets->{'main'}->get_object('vboxChoosePlay')->show_all; $widgets->{'main'}->get_object('scrollIconPlaylist')->hide; $widgets->{'main'}->get_object('scrollPlaylist')->hide; $widgets->{'main'}->get_object('toolbarPlaylist')->hide; $widgets->{'main'}->get_object('checkPreviews')->hide; update_cplayclist(); } #*** #****f* lyricue/close_playlist_chooser # NAME # close_playlist_chooser # SYNOPSIS # close_playlist_chooser ( ) # FUNCTION # Close the playlist chooser # SOURCE # sub close_playlist_chooser { debug("Close playlist chooser"); $widgets->{'main'}->get_object('vboxChoosePlay')->hide; $widgets->{'main'}->get_object('checkPreviews')->show_all; if ($globals->{'image_playlist'}) { $widgets->{'main'}->get_object('scrollIconPlaylist')->show_all; $widgets->{'main'}->get_object('scrollPlaylist')->hide; $widgets->{'main'}->get_object('toolbarPlaylist')->hide; $widgets->{'main'}->get_object('frameMainLeft')->hide; } else { $widgets->{'main'}->get_object('scrollIconPlaylist')->hide; $widgets->{'main'}->get_object('scrollPlaylist')->show_all; $widgets->{'main'}->get_object('toolbarPlaylist')->show_all; $widgets->{'main'}->get_object('frameMainLeft')->show_all; } } #*** #****f* lyricue/create_dialog_prefs # NAME # create_dialog_prefs # SYNOPSIS # create_dialog_prefs() # FUNCTION # Open the preferences dialog # OUTPUT # preferences dialog # SOURCE # sub create_dialog_prefs { debug("Creating preferences dialog"); $config = load_config($globals->{'profile'}); if (defined $widgets->{'prefs'}) { close_dialog($widgets->{'prefs'}->get_object('dialogPrefs')); } $widgets->{'prefs'} = load_window("dialogPrefs"); # Profiles my $renderer = Gtk3::CellRendererText->new; $widgets->{'prefs'}->get_object('comboPrefsProfile') ->pack_start($renderer, TRUE); $widgets->{'prefs'}->get_object('comboPrefsProfile') ->add_attribute($renderer, text => 0); my $profilestore = Gtk3::ListStore->new('Glib::String'); $widgets->{'prefs'}->get_object('comboPrefsProfile') ->set_model($profilestore); my $query = "SELECT DISTINCT profile FROM config WHERE profile != ''"; my $sth = do_query($lyricDbh, $query, FALSE); my $combo_model = Gtk3::ListStore->new('Glib::String'); $profilestore->set($profilestore->append, 0, gettext("Create New Profile")); while (my @row = $sth->fetchrow_array()) { my $iter = $profilestore->append; $profilestore->set($iter, 0, $row[0]); $combo_model->set($combo_model->append, 0, $row[0]); if ($row[0] eq $globals->{'profile'}) { $widgets->{'prefs'}->get_object('comboPrefsProfile') ->set_active_iter($iter); } } # Fonts tab $widgets->{'prefs'}->get_object('entryPrefHeader') ->set_text($config->{'Header'}); $widgets->{'prefs'}->get_object('entryPrefMain') ->set_text($config->{'Main'}); $widgets->{'prefs'}->get_object('entryPrefFooter') ->set_text($config->{'Footer'}); $widgets->{'prefs'}->get_object('entryPrefOSD')->set_text($config->{'OSD'}); $widgets->{'prefs'}->get_object('entryPrefColour') ->set_text($config->{'Colour'}); $widgets->{'prefs'}->get_object('entryPrefShadowColour') ->set_text($config->{'ShadowColour'}); $widgets->{'prefs'}->get_object('spinPrefShadow') ->set_value($config->{'ShadowSize'}); # Projector Layout combo_set_active($widgets->{'prefs'}->get_object('comboPrefAspect'), $config->{'Aspect'}); combo_set_active($widgets->{'prefs'}->get_object('comboPrefVertical'), $config->{'VerticalLocation'}); combo_set_active($widgets->{'prefs'}->get_object('comboPrefHorizontal'), $config->{'HorizontalLocation'}); combo_set_active($widgets->{'prefs'}->get_object('comboPrefJustification'), $config->{'Justification'}); combo_set_active($widgets->{'prefs'}->get_object('comboPrefInfoLoc'), $config->{'ShowInfoLocation'}); debug("showinfo = ".$config->{'ShowInfoPages'}); combo_set_active($widgets->{'prefs'}->get_object('comboPrefInfoPages'), $config->{'ShowInfoPages'}); $widgets->{'prefs'}->get_object('spinPrefOverscanV') ->set_value($config->{'OverscanV'}); $widgets->{'prefs'}->get_object('spinPrefOverscanH') ->set_value($config->{'OverscanH'}); # projector options my $scaled = create_pixbuf( $config->{'BGImage'}, $globals->{'icon_width'}, $globals->{'icon_height'} ); if ($scaled) { $widgets->{'prefs'}->get_object('imagePrefBG') ->set_from_pixbuf($scaled); $widgets->{'prefs'}->get_object('imagePrefBG')->{user_data} = $config->{'BGImage'}; } combo_set_active($widgets->{'prefs'}->get_object('comboPrefDefTrans'), $config->{'DefaultTransition'}); $widgets->{'prefs'}->get_object('checkPrefMouse') ->set_active($config->{'IgnoreMouse'}); $widgets->{'prefs'}->get_object('entryPrefWindowOffset') ->set_text($config->{'GeometryOverride'}); # Advanced $widgets->{'prefs'}->get_object('checkPrefLoop') ->set_active($config->{'Loop'}); $widgets->{'prefs'}->get_object('checkPrefExpandNew') ->set_active($config->{'ExpandNew'}); $widgets->{'prefs'}->get_object('checkPrefAudit') ->set_active($config->{'Audit'}); $widgets->{'prefs'}->get_object('checkPrefView') ->set_active($config->{'DynamicPreview'}); $widgets->{'prefs'}->get_object('checkPrefMiniview') ->set_active($config->{'Miniview'}); # Defaults $config->{'ImageDirectory'} =~ s/^\~/$ENV{'HOME'}/; $widgets->{'prefs'}->get_object('filePrefSpecialImagedir') ->set_label($config->{'ImageDirectory'}); $widgets->{'prefs'}->get_object('filePrefSpecialImagedir')->{'user_data'} = "img"; $config->{'BGDirectory'} =~ s/^\~/$ENV{'HOME'}/; $widgets->{'prefs'}->get_object('filePrefSpecialBGdir') ->set_label($config->{'BGDirectory'}); $widgets->{'prefs'}->get_object('filePrefSpecialBGdir')->{'user_data'} = "bg"; my (@list); my $bibles = $config->{'Bibles'}; my $store = $widgets->{'prefs'}->get_object('comboPrefBible')->get_model(); if ($store) { $store->clear(); } else { $store = Gtk3::ListStore->new('Glib::String', 'Glib::String'); $widgets->{'prefs'}->get_object('comboPrefBible')->set_model($store); } my $iter_sel; foreach (sort keys %$bibles) { my $bible = $_ . ":" . $bibles->{$_}; my $btext = $bibles->{$_}; $btext =~ s/^.*;//g; my $iter = $store->append; $store->set($iter, 0, $btext, 1, $bible); if ($bible eq $config->{'DefBible'}) { $iter_sel = $iter; } } if (defined $iter_sel) { $widgets->{'prefs'}->get_object('comboPrefBible') ->set_active_iter($iter_sel); } my $cell = Gtk3::CellRendererText->new; $widgets->{'prefs'}->get_object('comboPrefBible')->pack_start($cell, TRUE); $widgets->{'prefs'}->get_object('comboPrefBible') ->add_attribute($cell, text => 0); $widgets->{'prefs'}->get_object('entryPrefSpecialSong') ->set_text($config->{'SpecialSong'}); $widgets->{'prefs'}->get_object('entryPrefSpecialImage') ->set_text($config->{'SpecialImage'}); $widgets->{'prefs'}->get_object('entryPrefSpecialBack') ->set_text($config->{'SpecialBack'}); # Signals $widgets->{'prefs'}->get_object('entryPrefHeader') ->signal_connect("button_press_event" => \&open_dialogFont, "Header"); $widgets->{'prefs'}->get_object('entryPrefMain') ->signal_connect("button_press_event" => \&open_dialogFont, "Main"); $widgets->{'prefs'}->get_object('entryPrefFooter') ->signal_connect("button_press_event" => \&open_dialogFont, "Footer"); $widgets->{'prefs'}->get_object('entryPrefOSD') ->signal_connect("button_press_event" => \&open_dialogFont, "OSD"); $widgets->{'prefs'}->get_object('entryPrefColour') ->signal_connect("button_press_event" => \&open_dialogColour, "Font"); $widgets->{'prefs'}->get_object('entryPrefShadowColour') ->signal_connect("button_press_event" => \&open_dialogColour, "Shadow"); $widgets->{'prefs'}->get_object('comboPrefsProfile') ->signal_connect("changed" => \&change_pref_profile, "prefs"); } #*** #****f* lyricue/change_windowoffset # NAME # change_windowoffset # SYNOPSIS # change_windowoffset # FUNCTION # Show window for offset setting # INPUTS # OUTPUT # Application loaded on second head # SOURCE # #*** sub change_windowoffset { debug("Showing offset window"); my $offsetxml = load_window("dialogWindowOffset"); $offsetxml->get_object('dialogWindowOffset') ->parse_geometry( $widgets->{'prefs'}->get_object('entryPrefWindowOffset')->get_text); my $confirm = $offsetxml->get_object('dialogWindowOffset')->run(); if ($confirm == 1) { my ($x, $y) = $offsetxml->get_object('dialogWindowOffset')->get_position; $widgets->{'prefs'}->get_object('entryPrefWindowOffset') ->set_text("+" . $x . "+" . $y); } close_dialog($offsetxml->get_object('dialogWindowOffset')); } #*** #****f* lyricue/change_pref_profile # NAME # change_pref_profile # SYNOPSIS # change_pref_profile($widget) # FUNCTION # Change preferences profile # INPUTS # $widget - Calling widget # OUTPUT # Stuff shown or hidden # SOURCE # sub change_pref_profile { my ($widget, $caller) = @_; debug("Changing preferences profile"); my $newprofile = gettext("Create New Profile"); if ($caller eq "prefs") { my $hoststore = $widgets->{'prefs'}->get_object('comboPrefsProfile')->get_model(); $newprofile = $widgets->{'prefs'}->get_object('comboPrefsProfile') ->get_active_text(); } if ($newprofile eq gettext("Create New Profile")) { my $newxml = load_window("dialogPromptEntry"); $newxml->get_object('dialogPromptEntry') ->set_title(fromutf(gettext("Create new profile"))); $newxml->get_object('labelPromptE') ->set_text(fromutf(gettext("Name of profile"))); my $response = $newxml->get_object('dialogPromptEntry')->run(); if ($response eq "ok") { $globals->{'profile'} = $newxml->get_object('entryPromptE')->get_text(); } close_dialog($newxml->get_object('dialogPromptEntry')); } else { $globals->{'profile'} = $newprofile; } create_dialog_prefs(); } #*** #****f* lyricue/execute_app # NAME # execute_app # SYNOPSIS # execute_app ($widget, $app) # FUNCTION # Run and application on the second head # INPUTS # $widget - Calling widget # $app - Application to run # OUTPUT # Application loaded on second head # SOURCE # sub execute_app { my ($widget, $app) = @_; my $command = ""; $command = $app; debug("Executing app: " . $command); if ($command =~ /;$/) { $command =~ s/;$//; system($command . " &"); } else { my $geom = "+" . ($widgets->{'main'}->get_object('windowMain') ->get_screen->get_width - 100) . "+100"; if ($config->{'GeometryOverride'}) { $geom = $config->{'GeometryOverride'}; } system($command. " --geometry " . $geom . " &"); } } #*** #****f* lyricue/quote # NAME # quote # SYNOPSIS # quote () # FUNCTION # Quote a string for use in db queries # INPUTS # @_ - String to be quoted # OUTPUT # Quoted string # SOURCE # sub quote { return $lyricDbh->quote(@_); } #*** #****f* lyricue/honourise_song_lyrics # NAME # honourise_song_lyrics # SYNOPSIS # honourise_song_lyrics ($widget) # FUNCTION # Change lyrics to 'honourise' them by changing 'jesus' to 'Jesus' etc # INPUTS # $widget - Calling widget # OUTPUT # Better lyrics # SOURCE # sub honourise_song_lyrics { my ($widget) = @_; my ($tmppage, $page, $numchars, $key); my %hash; debug("Start of honourising lyrics..."); foreach $page (keys(%pageOrder)) { $tmppage = get_buffer_text($widgets->{'textAPageB'}{$page}); debug( "Page contents of page " . $page . " before honourisation:\n" . $tmppage); # this hash is adapted from bible parsing perl script # it will correct american spelling in any songs entered # and will perform the honourise process - # capitalising holy names and correcting errors like # "Sons of god" to "sons of God" %hash = ( "honor" => "honour", "color" => "colour", "labor" => "labour", "neighbor" => "neighbour", "center" => "centre", "dialog" => "dialogue", "gray" => "grey", "humor" => "humour", "harbor" => "harbour", "thru" => "through", "plow" => "plough", "favor" => "favour", "son" => "Son", "reaSon" => "reason", "Sons" => "sons", "god" => "God", "spirit" => "Spirit", "jesus" => "Jesus", "lord" => "Lord", "emmanuel" => "Emmanuel", "immanuel" => "Immanuel", "jehovah" => "Jehovah", "he" => "He", "him" => "Him", "his" => "His", "History" => "history", "messiah" => "Messiah", "father" => "Father", "king" => "King", "christ" => "Christ", "great i am" => "Great I Am", "hosanna" => "Hosanna", "yahweh" => "Yahweh" ); foreach $key (keys %hash) { $tmppage =~ s/^$key([ \n])/$hash{$key}$1/g; $tmppage =~ s/([ \n])$key$/$1$hash{$key}/g; $tmppage =~ s/([ \n])$key([ \n])/$1$hash{$key}$2/g; } debug( "Page contents of page " . $page . " after honourisation:\n" . $tmppage); $widgets->{'textAPageB'}{$page}->set_text($tmppage); } debug("End of honourising lyrics..."); } #*** #****f* lyricue/select_bible_db # NAME # select_bible_db # SYNOPSIS # select_bible_db ($bible_database) # FUNCTION # Change the bible db used by the server # INPUTS # $bible_database - DB name to change it to # OUTPUT # Verses displayed in chosen bible # SOURCE # sub select_bible_db { my ($widget, $bibledb) = @_; if ($widget && ($widget->get_active)) { debug("Changing bible to $bibledb"); my @line = split(/;/, $bibledb, 2); do_change_bible($line[0], $line[1]); if ((!defined $config->{'DefBible'}) || ($config->{'DefBible'} eq "")) { $config->{'DefBible'} = $line[1] . ":" . $line[0] . ";" . $widget->get('label'); debug("No default bible set previously, setting to " . $config->{'DefBible'}); write_config(); } } } #*** #****f* lyricue/do_change_bible # NAME # do_change_bible # SYNOPSIS # do_change_bible ($type, $bibledb) # FUNCTION # Change currently used bible # INPUTS # $type - bible type (sword/db) # $bibledb - Bible name # OUTPUT # Calls update_playlist # SOURCE # sub do_change_bible { my ($type, $bibledb) = @_; debug("Change bible"); $globals->{'bibledb'} = $bibledb; if (!$globals->{'usesword'}) { if ($bibleDbh != NULL) { $bibleDbh->disconnect; $bibleDbh = NULL; } } if ($type eq "db") { $globals->{'usesword'} = FALSE; my ($table, $dbname) = split(/@/, $globals->{'bibledb'}, 2); if ((!(defined $dbname)) || ($dbname eq "")) { $dbname = $table; $table = "verse"; $globals->{'bibledb'} = $table . "@" . $dbname; } $bibleDbh = db_connect($dbname, $errorcodes->{'bibledbopen'} . $dbname, FALSE); } else { $globals->{'usesword'} = TRUE; } update_display("change_to_db", $bibledb, $type); preview_display("change_to_db", $bibledb, $type, "MINI"); } #*** #****f* lyricue/invert_lines # NAME # invert_lines # SYNOPSIS # invert_lines () # FUNCTION # Change value so that playlist items text shows the last line of each page rather than the first # INPUTS # OUTPUT # Calls update_playlist # SOURCE # sub invert_lines { debug("Invert line display"); $globals->{'invert'} = !$globals->{'invert'}; update_playlist(); } #*** #****f* lyricue/export_song # NAME # export_song # SYNOPSIS # export_song () # FUNCTION # Show a dialog to choose where to save an exported song to # OUTPUT # File dialog displayed # SOURCE # sub export_song { debug("Export song"); my $filexml = load_window("dialogFileChooser"); $filexml->get_object('buttonFileOK') ->signal_connect(clicked => \&complete_export_song, $filexml); $filexml->get_object('dialogFileChooser') ->set_title(gettext("Enter filename for export")); $filexml->get_object('dialogFileChooser')->show_all(); } #*** #****f* lyricue/complete_export_song # NAME # complete_export_song # SYNOPSIS # complete_export_song ($widget, $filexml) # FUNCTION # Export a song to the chosen filename # INPUTS # $widget - Calling widget # $filexml - File dialog # OUTPUT # File containing song # SOURCE # sub complete_export_song { my ($widget, $filexml) = @_; my ($tmppage, $page, $numchars, $key); debug("Exporting song"); my $export = $filexml->get_object('dialogFileChooser')->get_filename; close_dialog($widget); debug(" to file: " . $export); # Find maximum number of pages my $maxpages = 1; while (exists $pageOrder{$maxpages}) { $maxpages++; } #decrement maxpages so export works properly $maxpages = $maxpages - 1; my @pages = (); foreach $page (sort { $pageOrder{$a} cmp $pageOrder{$b} } keys %pageOrder) { my $tmppage = get_buffer_text($widgets->{'textAPageB'}{$page}); push @pages, $tmppage; } my $song = { 'name' => [$widgets->{'add'}->get_object('entryEditName')->get_text()], 'number' => [$widgets->{'add'}->get_object('entryEditNumber')->get_text()], 'book' => [$widgets->{'add'}->get_object('entryEditBook')->get_text()], 'artist' => [$widgets->{'add'}->get_object('entryEditArtist')->get_text()], 'keywords' => [$widgets->{'add'}->get_object('entryEditKeywords')->get_text()], 'copyright' => [$widgets->{'add'}->get_object('entryEditCopyright')->get_text()], 'page' => \@pages }; my $out = {'song' => [$song]}; my $writer = XML::Simple->new(); open my $fh, ">" . $export . ""; $writer->XMLout($out, OutputFile => $fh, RootName => 'lyricue'); close $fh; } #*** #****f* lyricue/do_adv_search # NAME # do_adv_search # SYNOPSIS # do_adv_search () # FUNCTION # Do an advanced search where it searchs lyrics instead of song titles # OUTPUT # List of suitable songs # SOURCE # sub do_adv_search { my $search_text = $widgets->{'search'}->get_object('entrySearchSongs')->get_text(); if ($search_text ne "") { debug("Searching for " . $search_text); my $store = $widgets->{'search'}->get_object('treeSearch')->get_model(); if ($store) { $store->clear; } else { $store = Gtk3::ListStore->new( 'Glib::String', 'Glib::String', 'Glib::String', 'Glib::String', 'Glib::String' ); $widgets->{'search'}->get_object('treeSearch')->set_model($store); my $column = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Title")), Gtk3::CellRendererText->new, text => 0 ); $widgets->{'search'}->get_object('treeSearch') ->append_column($column); $column = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Artist")), Gtk3::CellRendererText->new, text => 1 ); $widgets->{'search'}->get_object('treeSearch') ->append_column($column); $column = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Book")), Gtk3::CellRendererText->new, text => 2 ); $widgets->{'search'}->get_object('treeSearch') ->append_column($column); $column = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Song No")), Gtk3::CellRendererText->new, text => 3 ); $widgets->{'search'}->get_object('treeSearch') ->append_column($column); } my $query = "SELECT id,title,songnum,book,artist,count(id) as count FROM lyricMain,page WHERE lyricMain.id=page.songid AND (page.lyrics LIKE \"%" . $search_text . "%\" OR title LIKE \"%" . $search_text . "%\" OR artist LIKE \"%" . $search_text . "%\" OR keywords LIKE \"%" . $search_text . "%\") GROUP BY id ORDER BY count DESC"; $sth = do_query($lyricDbh, $query, FALSE); while ($row = $sth->fetchrow_hashref()) { my $iter = $store->append; $store->set( $iter, 0, $row->{'title'}, 1, $row->{'artist'}, 2, $row->{'book'}, 3, $row->{'songnum'}, 4, $row->{'id'} ); } } } #*** #****f* lyricue/update_adv_search # NAME # update_adv_search # SYNOPSIS # update_adv_search ($widget) # FUNCTION # Update list of matching songs # INPUTS # $widget - Calling widget # OUTPUT # Updated dialog # SOURCE # sub update_adv_search { my ($widget) = @_; my $selection = $widgets->{'search'}->get_object('treeSearch')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { my $songid = $model->get($iter, 4); debug("Songid \"" . $songid . "\" selected"); my $query = "SELECT lyrics FROM page WHERE songid=" . $songid . " ORDER BY pagenum"; $sth = do_query($lyricDbh, $query, FALSE); my $lyrics = ""; while ($row = $sth->fetchrow_hashref()) { $lyrics .= $row->{'lyrics'} . "\n\n"; } $widgets->{'search'}->get_object('textSearch') ->get_buffer->set_text($lyrics); } } #*** #****f* lyricue/move_item # NAME # move_item # SYNOPSIS # move_item ($direction) # FUNCTION # Move item in the playlist up/down # INPUTS # $direction - Direction to move item # OUTPUT # Re-ordered playlist # SOURCE # sub move_item { my ($source, $placement, $dest) = @_; debug("Moving " . $source . " to " . $placement . " " . $dest); my $query = "SELECT playlist FROM playlist WHERE playorder=" . $source; my $sth = do_query($lyricDbh, $query, FALSE); my @playlist = $sth->fetchrow_array; # Get list of items in this playlist $query = "SELECT playorder FROM playlist WHERE playlist=" . $playlist[0] . " ORDER BY playorder"; $sth = do_query($lyricDbh, $query, FALSE); my @items = (); while (my @row = $sth->fetchrow_array) { push @items, $row[0]; } my $sourceitem = 0; my $destitem = 0; foreach my $i (0 .. @items - 1) { debug($i . "-" . $items[$i]); if ($items[$i] == $source) { $sourceitem = $i; } if ($items[$i] == $dest) { $destitem = $i; } } debug($sourceitem . ":" . $destitem); if ($placement eq "before") { $destitem--; if ($destitem < 0) { $destitem = 0; } } elsif ($placement eq "after") { $destitem++; } $dest = $items[$destitem]; if (!defined($dest)) { return; } debug($source . ":" . $dest); while ($source != $dest) { debug("Moving " . $source . " to " . $dest); if ($source < $dest) { start_transaction(); { renumber_item($source, -1); renumber_item($items[$sourceitem + 1], $source); renumber_item(-1, $items[$sourceitem + 1]); $lyricDbh->commit(); }; end_transaction($@); $sourceitem++; } else { start_transaction(); { renumber_item($source, -1); renumber_item($items[$sourceitem - 1], $source); renumber_item(-1, $items[$sourceitem - 1]); }; end_transaction($@); $sourceitem--; } $source = $items[$sourceitem]; } update_playlist($dest); } #*** #****f* lyricue/move_item_up # NAME # move_item_up # SYNOPSIS # move_item_up () # FUNCTION # Move item in the playlist up # OUTPUT # Calls move_item to do it # SOURCE # sub move_item_up { my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { my $item = $model->get($iter, 2); move_item($item, 'before', $item); } } #*** #****f* lyricue/move_item_down # NAME # move_item_down # SYNOPSIS # move_item_down () # FUNCTION # Move item in the playlist down # OUTPUT # Calls move_item to do it # SOURCE # sub move_item_down { my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { my $item = $model->get($iter, 2); move_item($item, 'after', $item); } } #*** #****f* lyricue/renumber_item # NAME # renumber_item # SYNOPSIS # renumber_item ($before,$after) # FUNCTION # Renumber an item in the playlist # INPUTS # $before - playlist id to change from # $after - playlist id to change to # OUTPUT # Renumbered verse in playlist/lyrics # SOURCE # sub renumber_item { my ($before, $after) = @_; debug("Renumber item"); my $query = "SELECT * FROM playlist WHERE playorder=" . $before; $sth = do_query($lyricDbh, $query, FALSE); $row = $sth->fetchrow_hashref(); $query = "UPDATE playlist SET playorder=" . $after . " WHERE playorder=" . $before; $sth = do_query($lyricDbh, $query, FALSE); $query = "UPDATE associations SET playlist=" . $after . " WHERE playlist=" . $before; $sth = do_query($lyricDbh, $query, FALSE); } #*** #****f* lyricue/add_copyright_preset # NAME # add_copyright_preset # SYNOPSIS # add_copyright_preset ($widget, $preset) # FUNCTION # Add preset copyright text from menu to text entry # INPUTS # $widget - Calling widget # $preset - preset number to add # OUTPUT # Preset in copyright entry # SOURCE # sub add_copyright_preset { debug("Add preset"); my ($widget, $preset) = @_; $widgets->{'add'}->get_object('entryEditCopyright') ->set_text("Preset" . $preset); } #*** #****f* lyricue/debug # NAME # debug # SYNOPSIS # debug ($text) # FUNCTION # Always write to logfile # Print $text if $globals->{'debugging'} is set # INPUTS # $text - the text to output # OUTPUT # Text to Logfile and possible STDERR # SOURCE # sub debug { my $text = shift; chomp($text); if ($text) { my ($sec, $min, $hour, undef) = localtime(time); $text = sprintf("%02d:%02d:%02d|INTERFACE: %s\n", $hour, $min, $sec, $text); print LOG $text; if ($globals->{'debugging'}) { print STDERR $text; } } return TRUE; } #*** #****f* lyricue/qdebug # NAME # qdebug # SYNOPSIS # qdebug ($text) # FUNCTION # Debug data # INPUTS # $text - the text to output # OUTPUT # Call to debug # SOURCE # sub qdebug { if ($globals->{'debugging'} == 2) { debug(@_); } } #*** #****f* lyricue/select_playlist # NAME # select_playlist # SYNOPSIS # select_playlist ($widget) # FUNCTION # Select the main playlist # INPUTS # $widget - calling widget # OUTPUT # Closed selection dialog # SOURCE # sub select_playlist { my ($widget) = @_; debug("Selecting a main playlist"); my $playlist = ""; my $playlistid = 0; my $selection = $widgets->{'main'}->get_object('treeChoosePlay')->get_selection; if ($selection) { my ($m, $i) = $selection->get_selected; if ($m) { $playlist = $m->get($i, 0); $playlistid = $m->get($i, 1); } } if ($playlist eq "") { return; } if ($playlistid) { $widgets->{'main'}->get_object('labelCurrentPlaylist') ->set_text($playlist); $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data} = $playlistid; update_playlist(); close_playlist_chooser(); } } #*** #****f* lyricue/select_playlist_click # NAME # select_playlist_click # SYNOPSIS # select_playlist_click ($widget, $event) # FUNCTION # Select the main playlist on double-click # INPUTS # $widget - calling widget # $event - calling event # OUTPUT # Closed selection dialog # SOURCE # sub select_playlist_click { my ($widget, $event) = @_; debug("select_playlist_click"); if ($event->type eq '2button-press') { select_playlist($widget); } } #*** #****f* lyricue/new_playlist # NAME # new_playlist # SYNOPSIS # new_playlist ($widget) # FUNCTION # Create a new playlist # INPUTS # $widget - Calling widget # OUTPUT # Closed # SOURCE # sub new_playlist { my ($widget) = @_; debug("Creating a new playlist"); my $playlist = ""; my $newxml = load_window("dialogPromptEntry"); $newxml->get_object('dialogPromptEntry') ->set_title(fromutf(gettext("Create new playlist"))); $newxml->get_object('labelPromptE') ->set_text(fromutf(gettext("Name of playlist"))); my $response = $newxml->get_object('dialogPromptEntry')->run(); if ($response eq "ok") { $playlist = $newxml->get_object('entryPromptE')->get_text(); } close_dialog($newxml->get_object('dialogPromptEntry')); if ($playlist eq "") { return; } my $query = "SELECT MAX(id)+1 FROM playlists"; my $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); $query = "INSERT INTO playlists (id,title, profile) VALUES (" . $row[0] . ", \"" . $playlist . "\", \"" . $globals->{'profile'} . "\")"; $sth = do_query($lyricDbh, $query, FALSE); $query = "SELECT id FROM playlists WHERE title LIKE \"" . $playlist . "\" AND profile=\"" . $globals->{'profile'} . "\""; $sth = do_query($lyricDbh, $query, FALSE); @row = $sth->fetchrow_array(); if ($row[0]) { $widgets->{'main'}->get_object('labelCurrentPlaylist') ->set_text($playlist); $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data} = $row[0]; update_playlist(); close_playlist_chooser(); } } #*** #****f* lyricue/copy_playlist # NAME # copy_playlist # SYNOPSIS # copy_playlist ($widget) # FUNCTION # Copy a playlist # INPUTS # $widget - Calling widget # OUTPUT # Closed # SOURCE sub copy_playlist { my ($widget) = @_; debug("Copying playlist"); my $playlist = ""; my $playlistid = 0; my $selection = $widgets->{'main'}->get_object('treeChoosePlay')->get_selection; if ($selection) { my ($m, $i) = $selection->get_selected; if ($m) { $playlist = $m->get($i, 0); $playlistid = $m->get($i, 1); } } if ($playlistid > 0) { my $copyxml = load_window("dialogPromptEntry"); my $labelText = fromutf(gettext("Copying ")) . $playlist; $copyxml->get_object('dialogPromptEntry')->set_title($labelText); $copyxml->get_object('labelPromptE')->set_text($labelText); $copyxml->get_object('labelPromptE')->{user_data} = $playlistid; $copyxml->get_object('entryPromptE')->{user_data} = $playlist; $copyxml->get_object('entryPromptE')->set_text($playlist); $copyxml->get_object('buttonPromptEOK') ->signal_connect(clicked => \&do_copy_playlist, $copyxml); } } #*** #****f* lyricue/rename_playlist # NAME # rename_playlist # SYNOPSIS # rename_playlist ($widget) # FUNCTION # Rename a playlist # INPUTS # $widget - Calling widget # OUTPUT # Closed # SOURCE sub rename_playlist { my ($widget) = @_; debug("Renaming playlist"); my $playlist = ""; my $playlistid = 0; my $selection = $widgets->{'main'}->get_object('treeChoosePlay')->get_selection; if ($selection) { my ($m, $i) = $selection->get_selected; if ($m) { $playlist = $m->get($i, 0); $playlistid = $m->get($i, 1); } } if ($playlistid > 0) { my $renamexml = load_window("dialogPromptEntry"); my $labelText = fromutf(gettext("Renaming ")) . $playlist; $renamexml->get_object('dialogPromptEntry')->set_title($labelText); $renamexml->get_object('labelPromptE')->set_text($labelText); $renamexml->get_object('labelPromptE')->{user_data} = $playlistid; $renamexml->get_object('entryPromptE')->set_text($playlist); $renamexml->get_object('buttonPromptEOK') ->signal_connect(clicked => \&do_rename_playlist, $renamexml); } } #*** #****f* lyricue/do_copy_playlist # NAME # do_copy_playlist # SYNOPSIS # do_copy_playlist ($widget, $copyxml) # FUNCTION # Copy a playlist # INPUTS # $widget - Calling widget # $copyxml - Dialog widgets # OUTPUT # Closed # SOURCE # sub do_copy_playlist { my ($widget, $copyxml) = @_; debug("Do copy playlist"); my $playlist = $copyxml->get_object('entryPromptE')->get_text; my $playlistid_src = $copyxml->get_object('labelPromptE')->{user_data}; if ($playlist eq $copyxml->get_object('entryPromptE')->{user_data}) { debug("Name unchanged"); return; } my $query = "SELECT id FROM playlists LEFT JOIN playlist ON playlist.data=playlists.id AND playlist.data NOT LIKE '%-%' AND (type='play' OR type='sub') WHERE data IS NULL AND playlists.id > 0 AND title='" . $playlist . "' and profile='" . $globals->{'profile'} . "' ORDER BY id"; my $sth = do_query($lyricDbh, $query, FALSE); if ($sth->fetchrow_array()) { debug("Duplicate"); update_cplayclist(); close_dialog($widget); } else { debug("Copying playlist"); my $query = "SELECT MAX(id)+1 FROM playlists"; my $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); my $playlistid_dst = $row[0]; $widgets->{'main'}->get_object('labelCurrentPlaylist') ->set_text($playlist); $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data} = $playlistid_dst; # iterate through source playlist and create new one copy_playlist2($playlistid_src, $playlistid_dst, $playlist); # Load the new playlist update_playlist(); close_playlist_chooser(); } } sub copy_playlist2 { my ($playlistid_src, $playlistid_dst, $playlist) = @_; my $query = "INSERT INTO playlists (id,title,profile) VALUES (" . $playlistid_dst . ", \"" . $playlist . "\", \"" . $globals->{'profile'} . "\")"; my $sth = do_query($lyricDbh, $query, FALSE); $query = "SELECT playorder,data,type,transition FROM playlist WHERE playlist=" . $playlistid_src . " ORDER BY playorder"; $sth = do_query($lyricDbh, $query, FALSE); while (my $row = $sth->fetchrow_hashref()) { my $query2 = "SELECT MAX(playorder) FROM playlist"; my $sth2 = do_query($lyricDbh, $query2, FALSE); my @row2 = $sth2->fetchrow_array(); my $playorder = $row2[0] + 1; my $data = $row->{'data'}; my $transition = $row->{'transition'}; my $playlistid_dst2 = 0; my $newplaylist = ""; if ($row->{'type'} eq "play") { # Playlist my $query3 = "SELECT MAX(id)+1 FROM playlists"; my $sth3 = do_query($lyricDbh, $query3, TRUE); my @row3 = $sth3->fetchrow_array(); $playlistid_dst2 = $row3[0]; $query3 = "SELECT title FROM playlists WHERE id=" . $row->{'data'}; $sth3 = do_query($lyricDbh, $query3, TRUE); @row3 = $sth3->fetchrow_array(); $newplaylist = $row3[0]; $data = $playlistid_dst2; } $query2 = "INSERT INTO playlist (playorder, playlist, data, type, transition) VALUES (" . $playorder . ", " . $playlistid_dst . ", '" . $data . "', '" . $row->{'type'} . "', " . $transition . ")"; $sth2 = do_query($lyricDbh, $query2, FALSE); if ($row->{'type'} eq "play") { # Playlist my $playlistid_src2 = $row->{'data'}; copy_playlist2($playlistid_src2, $playlistid_dst2, $newplaylist); } } } #*** #****f* lyricue/do_rename_playlist # NAME # do_rename_playlist # SYNOPSIS # do_rename_playlist ($widget, $renamexml) # FUNCTION # Rename a playlist # INPUTS # $widget - Calling widget # $renamexml - Dialog widgets # OUTPUT # Closed # SOURCE # sub do_rename_playlist { my ($widget, $renamexml) = @_; debug("Do rename playlist"); my $query = "UPDATE playlists SET title=\"" . $renamexml->get_object('entryPromptE')->get_text . "\" WHERE id=" . $renamexml->get_object('labelPromptE')->{user_data}; my $sth = do_query($lyricDbh, $query, FALSE); update_cplayclist(); close_dialog($widget); } #*** #****f* lyricue/delete_playlist # NAME # delete_playlist # SYNOPSIS # delete_playlist ($widget) # FUNCTION # Delete a playlist # INPUTS # $widget - Calling widget # OUTPUT # Closed # SOURCE sub delete_playlist { my ($widget) = @_; debug("Deleting a playlist"); my $playlist = ""; my $selection = $widgets->{'main'}->get_object('treeChoosePlay')->get_selection; if ($selection) { my ($m, $i) = $selection->get_selected; if ($m) { $playlist = $m->get($i, 1); } } if ($playlist eq "") { return; } my $query = "DELETE FROM playlists WHERE id=" . $playlist; my $sth = do_query($lyricDbh, $query, FALSE); $query = "DELETE FROM playlist WHERE data=" . $playlist . " AND type=\"play\""; $sth = do_query($lyricDbh, $query, FALSE); $query = "SELECT playorder FROM playlist WHERE playlist=" . $playlist; $sth = do_query($lyricDbh, $query, FALSE); while (my @row = $sth->fetchrow_array()) { remove_single_item($row[0]); } update_cplayclist(); } #*** #****f* lyricue/update_cplayclist # NAME # update_cplayclist # SYNOPSIS # update_cplayclist ($widget) # FUNCTION # Update the clist # INPUTS # $widget - The clist to update # OUTPUT # SOURCE # sub update_cplayclist { my ($selection, $renderer, $column); debug("Update Choose playlist"); my $store = $widgets->{'main'}->get_object('treeChoosePlay')->get_model(); if ($store) { $store->clear; } else { $store = Gtk3::ListStore->new('Glib::String', 'Glib::Int'); $widgets->{'main'}->get_object('treeChoosePlay')->set_model($store); $renderer = Gtk3::CellRendererText->new; $selection = $widgets->{'main'}->get_object('treeChoosePlay')->get_selection; $column = Gtk3::TreeViewColumn->new_with_attributes("Playlist", $renderer, text => 0); $widgets->{'main'}->get_object('treeChoosePlay') ->append_column($column); } my $query = "SELECT title,id FROM playlists LEFT JOIN playlist ON playlist.data=playlists.id AND playlist.data NOT LIKE '%-%' AND (type='play' OR type='sub') WHERE data IS NULL AND playlists.id > 0 AND profile = '" . $globals->{'profile'} . "' ORDER BY id"; my $sth = do_query($lyricDbh, $query, FALSE); my @row; while (@row = $sth->fetchrow_array()) { my $iter = $store->append; $store->set($iter, 0, fromutf($row[0]), 1, $row[1]); } } #*** #****f* lyricue/copy_item # NAME # copy_item # SYNOPSIS # copy_item () # FUNCTION # Copy the selected item in the playlist # OUTPUT # Extra item in the playlist # SOURCE # sub copy_item { my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { debug("Duplicate item clicked "); my $item = $model->get($iter, 2); my $query = "SELECT * FROM playlist WHERE playorder=" . $item; my $sth = do_query($lyricDbh, $query, FALSE); my $row = $sth->fetchrow_hashref(); if ($row->{'type'} ne "play") { my $query = "SELECT MAX(playorder) FROM playlist"; my $sth = do_query($lyricDbh, $query, FALSE); my @row2 = $sth->fetchrow_array(); $row2[0]++; $query = "INSERT INTO playlist (playorder,playlist,data,type) VALUES (" . $row2[0] . ", " . $row->{'playlist'} . ", \"" . $row->{'data'} . "\", \"" . $row->{'type'} . "\")"; $sth = do_query($lyricDbh, $query, FALSE); } update_playlist(); } } #*** #****f* lyricue/begin_loop # NAME # begin_loop # SYNOPSIS # begin_loop () # FUNCTION # Initialise the automatic page looping # OUTPUT # Gtk timer set # SOURCE # sub begin_loop { debug("Initialising a playlist item loop"); my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { my $loopxml = load_window("dialogLoop"); $loopxml->get_object('dialogLoop')->{user_data} = $model->get($iter, 2); $loopxml->get_object('buttonLoopOK') ->signal_connect(clicked => \&establish_timer, $loopxml); } } #*** #****f* lyricue/establish_timer # NAME # establish_timer # SYNOPSIS # establish_timer ($widget, $loopxml) # FUNCTION # Create a new timer # OUTPUT # Gtk timer set # SOURCE # sub establish_timer { my ($widget, $loopxml) = @_; reset_timer($globals->{'timer'}); my $seconds = $loopxml->get_object('spinLoopSeconds')->get_value_as_int(); my $milliseconds = $loopxml->get_object('spinLoopMilliseconds')->get_value_as_int(); debug("Seconds = " . $seconds . " ||| Milliseconds = " . $milliseconds); my $interval = ($seconds * 1000) + $milliseconds; if ($interval < 50) { $interval = 50; debug("Interval too small - defaulting to 50 milliseconds"); } #Find the id of the list we will be looping (could be a playlist, sublist or song) my $query = "SELECT data FROM playlist WHERE playorder =" . $loopxml->get_object('dialogLoop')->{user_data}; my $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); my $parent = $row[0]; update_display("display", $loopxml->get_object('dialogLoop')->{user_data}, ""); my @data = ("display", "next_page", "loop;" . $parent); $globals->{'timer'} = Glib::Timeout->add($interval, \&update_loop, \@data); debug("Set loop advance timer to " . $interval . " milliseconds."); close_dialog($widget); } #*** #****f* lyricue/update_loop # NAME # update_loop # SYNOPSIS # update_loop($data) # FUNCTION # Loop triggered # INPUTS # $data - # OUTPUT # SOURCE # sub update_loop { my ($data) = @_; debug("Loop triggered"); update_display($$data[0], $$data[1], $$data[2]); return TRUE; } #*** #****f* lyricue/load_config # NAME # load_config # SYNOPSIS # load_config() # FUNCTION # Loading Preferences # INPUTS # OUTPUT # SOURCE # sub load_config { my ($hostname) = @_; my ($conf); debug("Loading Preferences for $hostname"); eval { open(CONF, $globals->{'conffile'}); }; if ($@) { debug("No existing default.conf"); } else { while () { chomp; my ($key, $val) = split(/=/, $_, 2); $key =~ s/ *$//g; $val =~ s/^ *//g; $conf->{$key} = $val; } close CONF; } my $bibleCount = 0; $conf->{'Apps'}->{gettext("Load Lyricue Display")} = "lyricue_display"; $conf->{'Apps'}->{gettext("Close Lyricue Display")} = "lyricue_remote close"; my $query = "SELECT config_key, config_value FROM config WHERE profile='" . $hostname . "'"; $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); if (!defined $row[0]) { $globals->{'firstrun'} = TRUE; firstrun_wizard(); Gtk3->main(); $globals->{'firstrun'} = FALSE; $conf = load_config($globals->{'profile'}); load_profile_menu(); return $conf; } $sth = do_query($lyricDbh, $query, FALSE); while ($row = $sth->fetchrow_hashref()) { $conf->{$row->{'config_key'}} = $row->{'config_value'}; } $conf->{'BibleCount'} = $bibleCount; $conf->{'Bibles'} = get_bibles(); if (!defined $conf->{'HighlightColour'}) { $conf->{'HighlightColour'} = "yellow"; } $conf->{'LoopText'} = ""; if (defined $conf->{'Loop'}) { if ($conf->{'Loop'} eq "1") { $conf->{'LoopText'} = "loop"; } } if (defined $conf->{'BGImage'} && !($conf->{'BGImage'} =~ /;/)) { $conf->{'BGImage'} = "db;" . $conf->{'BGImage'}; } if (defined $conf->{'ImageDirectory'} && !($conf->{'ImageDirectory'})) { $conf->{'ImageDirectory'} = Glib::get_user_special_dir('pictures') . "/"; } if (defined $conf->{'ImageDirectory'} && !($conf->{'BGDirectory'})) { $conf->{'BGDirectory'} = Glib::get_user_special_dir('pictures') . "/"; } if (!defined $conf->{'DefaultTransition'}) { $conf->{'DefaultTransition'} = "Fade"; } if ( (!defined $conf->{'DBHost'}) || ($globals->{'mysqlhost'} ne "localhost")) { $conf->{'DBHost'} = $globals->{'mysqlhost'}; } else { $globals->{'mysqlhost'} = $conf->{'DBHost'}; } # Migrate from Lyricue 3 to Lyricue 4 items if (!defined $conf->{'Aspect'}) { my $aspect = $conf->{'Width'} / $conf->{'Height'}; if ($aspect > 1.7) { $conf->{'Aspect'} = "16:9"; } else { $conf->{'Aspect'} = "4:3"; } } if ($conf->{'Aspect'} eq "4:3") { $conf->{'Width'} = 1024; $conf->{'Height'} = 768; } else { $conf->{'Width'} = 1280; $conf->{'Height'} = 720; } # Set icon sizes according to aspect ratio $globals->{'display_aspect'} = $conf->{'Width'} / $conf->{'Height'}; $globals->{'icon_height'} = $globals->{'icon_width'} / $globals->{'display_aspect'}; $globals->{'thumb_height'} = $globals->{'thumb_width'} / $globals->{'display_aspect'}; $globals->{'snapshot_height'} = $globals->{'snapshot_width'} / $globals->{'display_aspect'}; if (defined $widgets->{'main'}) { $widgets->{'main'}->get_object('windowMain') ->set_title(gettext("Lyricue") . " - " . $globals->{'profile'}); } return $conf; } #*** #*** #****f* lyricue/save_state # NAME # save_state # SYNOPSIS # save_state() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub save_state { $config->{'FrameLeft'} = $widgets->{'main'}->get_object('hpanedMainLeft')->get_position(); $config->{'FrameRight'} = $widgets->{'main'}->get_object('hpanedMainRight')->get_position(); my ($width, $height) = $widgets->{'main'}->get_object('windowMain')->get_size(); if (defined $widgets->{'main'}->get_object('vpanedMain')) { $config->{'FrameMain'} = ($height - $widgets->{'main'}->get_object('vpanedMain')->get_position()); } } #*** #****f* lyricue/save_and_close_prefs # NAME # save_and_close_prefs # SYNOPSIS # save_and_close_prefs() # FUNCTION # Save and close preferences # INPUTS # OUTPUT # SOURCE # sub save_and_close_prefs { debug("Save and close preferences"); save_preferences(); $globals->{'configured'} = TRUE; close_dialog($widgets->{'prefs'}->get_object('dialogPrefs')); } #*** #****f* lyricue/save_preferences # NAME # save_preferences # SYNOPSIS # save_preferences() # FUNCTION # Saving preferences # INPUTS # OUTPUT # SOURCE # sub save_preferences { debug("Saving preferences"); # Fonts tab $config->{'Header'} = $widgets->{'prefs'}->get_object('entryPrefHeader')->get_text(); $config->{'Main'} = $widgets->{'prefs'}->get_object('entryPrefMain')->get_text(); $config->{'Footer'} = $widgets->{'prefs'}->get_object('entryPrefFooter')->get_text(); $config->{'OSD'} = $widgets->{'prefs'}->get_object('entryPrefOSD')->get_text(); $config->{'Colour'} = $widgets->{'prefs'}->get_object('entryPrefColour')->get_text(); $config->{'ShadowColour'} = $widgets->{'prefs'}->get_object('entryPrefShadowColour')->get_text(); $config->{'ShadowSize'} = $widgets->{'prefs'}->get_object('spinPrefShadow')->get_value(); # Projector Layout $config->{'Aspect'} = $widgets->{'prefs'}->get_object('comboPrefAspect')->get_active_id(); $config->{'VerticalLocation'} = $widgets->{'prefs'}->get_object('comboPrefVertical')->get_active_id(); $config->{'HorizontalLocation'} = $widgets->{'prefs'}->get_object('comboPrefHorizontal')->get_active_id(); $config->{'Justification'} = $widgets->{'prefs'}->get_object('comboPrefJustification') ->get_active_id(); $config->{'ShowInfoLocation'} = $widgets->{'prefs'}->get_object('comboPrefInfoLoc')->get_active_id(); $config->{'ShowInfoPages'} = $widgets->{'prefs'}->get_object('comboPrefInfoPages')->get_active_id(); $config->{'OverscanH'} = $widgets->{'prefs'}->get_object('spinPrefOverscanH')->get_value(); $config->{'OverscanV'} = $widgets->{'prefs'}->get_object('spinPrefOverscanV')->get_value(); # projector options $config->{'BGImage'} = $widgets->{'prefs'}->get_object('imagePrefBG')->{user_data}; $config->{'DefaultTransition'} = $widgets->{'prefs'}->get_object('comboPrefDefTrans')->get_active_id(); $config->{'IgnoreMouse'} = $widgets->{'prefs'}->get_object('checkPrefMouse')->get_active() ? 1 : 0; $config->{'GeometryOverride'} = $widgets->{'prefs'}->get_object('entryPrefWindowOffset')->get_text(); # Advanced $config->{'Loop'} = $widgets->{'prefs'}->get_object('checkPrefLoop')->get_active() ? 1 : 0; $config->{'ExpandNew'} = $widgets->{'prefs'}->get_object('checkPrefExpandNew')->get_active() ? 1 : 0; $config->{'Audit'} = $widgets->{'prefs'}->get_object('checkPrefAudit')->get_active() ? 1 : 0; $config->{'DynamicPreview'} = $widgets->{'prefs'}->get_object('checkPrefView')->get_active() ? 1 : 0; $config->{'Miniview'} = $widgets->{'prefs'}->get_object('checkPrefMiniview')->get_active() ? 1 : 0; # Defaults $config->{'ImageDirectory'} = $widgets->{'prefs'}->get_object('filePrefSpecialImagedir')->get_label(); $config->{'ImageDirectory'} =~ s/^\~/$ENV{'HOME'}/; $config->{'BGDirectory'} = $widgets->{'prefs'}->get_object('filePrefSpecialBGdir')->get_label(); $config->{'BGDirectory'} =~ s/^\~/$ENV{'HOME'}/; my $iter = $widgets->{'prefs'}->get_object('comboPrefBible')->get_active_iter; if ((defined $iter) && $widgets->{'prefs'}->get_object('comboPrefBible')->get_model->iter_is_valid($iter)){ $config->{'DefBible'} = $widgets->{'prefs'}->get_object('comboPrefBible') ->get_model->get($iter, 1); } else { debug("No default bible selected"); } $config->{'SpecialSong'} = $widgets->{'prefs'}->get_object('entryPrefSpecialSong')->get_text(); $config->{'SpecialImage'} = $widgets->{'prefs'}->get_object('entryPrefSpecialImage')->get_text(); $config->{'SpecialBack'} = $widgets->{'prefs'}->get_object('entryPrefSpecialBack')->get_text(); save_state(); write_config(); init_preview(); init_miniview(); preview_display("reconfig", "", "", "MINI"); update_display("reconfig", "", ""); preview_display("display", "current", "", "MINI"); update_display("display", "current", ""); } #*** #****f* lyricue/write_config_quick # NAME # write_config_quick # SYNOPSIS # write_config_quick() # FUNCTION # Writing preferences on shutdown # INPUTS # OUTPUT # SOURCE # sub write_config_quick { debug("Writing preferences (quick)"); foreach ("FrameLeft", "FrameRight") { $query = "UPDATE config SET config_value = \"".$config->{$_}."\" WHERE profile = \"".$globals->{'profile'}."\" AND config_key = \"".$_."\""; $sth = do_query($lyricDbh, $query, FALSE); } } #*** #****f* lyricue/write_config # NAME # write_config # SYNOPSIS # write_config() # FUNCTION # Writing preferences # INPUTS # OUTPUT # SOURCE # sub write_config { debug("Writing preferences"); # Backup config table my $query = "DELETE FROM config_old WHERE profile='" . $globals->{'profile'} . "'"; my $sth = do_query($lyricDbh, $query, FALSE); $query = "INSERT config_old SELECT * FROM config WHERE profile='" . $globals->{'profile'} . "'"; $sth = do_query($lyricDbh, $query, FALSE); $query = "DELETE FROM config WHERE profile='" . $globals->{'profile'} . "'"; $sth = do_query($lyricDbh, $query, FALSE); foreach (sort keys(%$config)) { if ((!/^Bible/) && (!/^App/) && (!/^LoopText/)) { $query = "INSERT INTO config ( profile, config_key, config_value ) VALUES (\"" . $globals->{'profile'} . "\", \"" . $_ . "\", \"" . $config->{$_} . "\")"; $sth = do_query($lyricDbh, $query, FALSE); } } my $apps = $config->{'Apps'}; foreach (keys %$apps) { $query = "INSERT INTO config ( profile, config_key, config_value ) VALUES ( \"" . $globals->{'profile'} . "\", \"App\", \"" . $_ . ";" . $config->{'Apps'}->{$_} . "\")"; $sth = do_query($lyricDbh, $query, FALSE); } preview_display("reconfig", "", "", "MINI"); update_display("reconfig", "", ""); update_display("status", "", ""); } #*** # Add the filename to the playlist #*** #****f* lyricue/file_ok_sel # NAME # file_ok_sel # SYNOPSIS # file_ok_sel($widget, $filexml) # FUNCTION # Add filename to playlist # INPUTS # $widget - # $filexml - # OUTPUT # SOURCE # sub file_ok_sel { my ($widget, $filexml) = @_; debug("Add filename to playlist"); my $main_playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; my $filenames = $filexml->get_object('dialogFileChooser')->get_filenames; foreach my $file (@$filenames) { do_add_file($file, $main_playlist); } update_playlist(); close_dialog($widget); } #*** # Add the filename to the playlist #*** #****f* lyricue/do_add_file # NAME # do_add_file # SYNOPSIS # do_add_file($file, $playlist) # FUNCTION # do_add_file: file= # INPUTS # $file - # $playlist - # OUTPUT # SOURCE # sub do_add_file { my ($file, $playlist) = @_; debug("do_add_file: file=" . $file); if ( ($file =~ /ppt$/i) || ($file =~ /odp$/i) || ($file =~ /pptx$/) || ($file =~ /pdf$/)) { my $dialog = Gtk3::MessageDialog->new($widgets->{'main'}->get_object('windowMain'), 'destroy-with-parent', 'info', 'none', gettext("Importing presentation")); $dialog->show_all(); do_pending(); my $tmpdir = tempdir("lyricue-XXXX", DIR => "/var/tmp", CLEANUP => 0); my $target = ""; if (!($file =~ /pdf$/) && ($globals->{'unoconv'} ne "")) { # Add presentation debug("Adding ppt/odp presentation"); $target = $file; $target =~ s/^.*\///g; $target =~ s/'//g; # fix handling of ' in filename # Add 'ppt' to end of 'pptx' files so unoconv will handle them if ($target =~ /pptx$/) { $target .= ".ppt"; } my $command = "cp \"" . $file . "\" \"" . $tmpdir . "/" . $target . "\""; debug($command); system($command); do_pending(); # Convert to PDF using OpenOffice $command = $globals->{'unoconv'} . " -f pdf \"" . $tmpdir . "/" . $target . "\""; debug($command); system($command); do_pending(); my $ret = opendir DIR, $tmpdir; if ($ret) { foreach my $filename (sort readdir(DIR)) { if ($filename =~ /\.pdf$/) { $file = $tmpdir . "/" . $filename; } } closedir DIR; } } if ($globals->{'convert'} ne "") { if (($file =~ /pdf$/)) { # Convert to PNG using ImageMagick my $command = $globals->{'convert'} . " -density 150 \"" . $file . "\" -resize " . $config->{'Width'} . "x" . $config->{'Height'} . " \"" . $tmpdir . "/img.png\""; debug($command); system($command); do_pending(); # Import directory my $ret = opendir DIR, $tmpdir; if ($ret) { foreach my $filename (sort readdir(DIR)) { if (($filename =~ /\.pdf$/) || ($filename eq $target)) { unlink $tmpdir . "/" . $filename; } elsif ($filename =~ /^img.*png$/) { my $count = $filename; $count =~ s/^.*[^0-9]([0-9]*)\..*$/$1/g; $count++; rename $tmpdir . "/" . $filename, $tmpdir . "/page_" . $count . ".png"; } } closedir DIR; } if ($target eq "") { $target = $file; $target =~ s/^.*\///g; } do_add_directory($tmpdir, $target); $dialog->destroy; return; } } } if (($file ne "") && ((-r $file) || ($file =~ /:\/\//))) { add_item($playlist, "file", $file); } } #*** #****f* lyricue/create_sublist # NAME # create_sublist # SYNOPSIS # create_sublist () # FUNCTION # Display the 'new sublist' dialog # INPUTS # OUTPUT # Dialog # SOURCE # sub create_sublist { my ($widget) = @_; debug("Create sublist"); create_dialogSublist($widget); } #*** #*** #****f* lyricue/new_sublist_from_xml # NAME # new_sublist_from_xml # SYNOPSIS # new_sublist_from_xml($widget, $sublistxml) # FUNCTION # # INPUTS # $widget - # $sublistxml - # OUTPUT # SOURCE # sub new_sublist_from_xml { my ($widget, $sublistxml) = @_; new_sublist($sublistxml->get_object('entryPromptE')->get_text()); close_dialog($sublistxml->get_object('dialogPromptEntry')); } #*** #****f* lyricue/new_sublist # NAME # new_sublist # SYNOPSIS # new_sublist () # FUNCTION # Create sublist entry in database # INPUTS # OUTPUT # Closes sublist dialog # Adds sublist to current playlist # Calls update_playlist to refresh playlist # Returns sublist id # SOURCE # sub new_sublist { my ($sublist) = @_; debug("new sublist"); my ($row, $sth, $rv, $parentid); #Determine the id of the main playlist $parentid = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; #Find out the id for the playlists table my $playlistsid = 1; $query = "SELECT MAX(id) FROM playlists"; $sth = do_query($lyricDbh, $query, FALSE); if ($row = $sth->fetchrow_hashref()) { if ($row->{'MAX(id)'}) { $playlistsid = $row->{'MAX(id)'} + 1; } } #Find out the playorder for the playlist table my $playorder = 1; $query = "SELECT MAX(playorder) FROM playlist"; $sth = do_query($lyricDbh, $query, FALSE); if ($row = $sth->fetchrow_hashref()) { if ($row->{'MAX(playorder)'}) { $playorder = $row->{'MAX(playorder)'} + 1; } } #create sublist playlist $query = "INSERT INTO playlists (id, title, profile, ref) VALUES (" . $playlistsid . " ,'" . $sublist . "','" . $globals->{'profile'} . "','')"; $sth = do_query($lyricDbh, $query, FALSE); #link sublist to main playlist $query = "INSERT INTO playlist (playorder,playlist,type,data,transition) VALUES (" . $playorder . ", " . $parentid . ", \"sub\"," . $playlistsid . " ,0)"; $sth = do_query($lyricDbh, $query, FALSE); update_playlist(); return $playlistsid; } #*** #****f* lyricue/move_item_to_sublist # NAME # move_item_to_sublist # SYNOPSIS # move_item_to_sublist ($item, $sublistid) # FUNCTION # Move a playlist item to become a child of a sublist # INPUTS # $item - playorder of the item to be moved # $sublistid - id of the sublist the item is to be a child of # OUTPUT # Alters database entry for playlist item to make sublist its parent # Calls update_playlist to refresh playlist # SOURCE # sub move_item_to_sublist { my ($widget, $sublistid) = @_; debug("move item to sublist"); my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { my $plitem = $model->get($iter, 2); debug("Moving item " . $plitem . " to playlist " . $sublistid); my $query = "UPDATE playlist SET playlist = " . $sublistid . " WHERE playorder = " . $plitem; my $sth = do_query($lyricDbh, $query, FALSE); update_playlist(); } } #*** #****f* lyricue/find_more_children # NAME # find_more_children # SYNOPSIS # find_more_children ($parentid) # FUNCTION # Find all the children of a given playlist item # INPUTS # $parentid - The playlist id of the 'parent' # OUTPUT # Returns an array of playlist ids representing children of the parent # SOURCE # sub find_more_children { my ($parentid) = @_; debug("Looking for children"); my @kiddies; my $query = "SELECT data FROM playlist WHERE playlist = " . $parentid . " AND type = 'sub'"; my $sth = do_query($lyricDbh, $query, FALSE); while ($row = $sth->fetchrow_hashref()) { @kiddies = (@kiddies, $row->{'data'}); @kiddies = (@kiddies, find_more_children($row->{'data'})); } return @kiddies; } #*** #****f* lyricue/associate_bg # NAME # associate_bg # SYNOPSIS # associate_bg ($imagefile) # FUNCTION # To associate the an background image with a playlist item # INPUTS # $imagefile - file path & name of image to associate with item # OUTPUT # Stores image name, playlist order pair in db 'associations' table # SOURCE # sub associate_bg { my ($imagefile) = @_; debug("Associating bg " . $imagefile . " with " . $ASSOCIATE[0]); my $query = "DELETE FROM associations WHERE playlist=" . $ASSOCIATE[0]; my $sth = do_query($lyricDbh, $query, FALSE); $query = "INSERT INTO associations (id,playlist,imagename, absoluteparent) VALUES(0, " . $ASSOCIATE[0] . ", '" . $imagefile . "'," . $ASSOCIATE[1] . ")"; $sth = do_query($lyricDbh, $query, FALSE); update_playlist(); @ASSOCIATE = (); } #*** #****f* lyricue/prepare_for_association # NAME # prepare_for_association # SYNOPSIS # prepare_for_association () # FUNCTION # Set up the ASSOCIATE array # INPUTS # OUTPUT # Updated ASSOCIATE array # SOURCE # sub prepare_for_association { my ($widget) = @_; debug("prepare for association"); my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { # Change ASSOCIATE array to contain playorder of list item, # main playlist id @ASSOCIATE = ( $model->get($iter, 2), $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data} ); debug("Waiting for an image click in order to associate"); } } #*** #****f* lyricue/disassociate_bg # NAME # disassociate_bg # SYNOPSIS # disassociate_bg () # FUNCTION # To disssociate the current background image from a playlist item # INPUTS # OUTPUT # If an association record exists in db, it is removed. # SOURCE # sub disassociate_bg { my ($widget) = @_; my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { debug("Disassociating image from " . $model->get($iter, 2)); my $query = "DELETE FROM associations WHERE playlist=" . $model->get($iter, 2); my $sth = do_query($lyricDbh, $query, FALSE); update_playlist(); } } #*** #****f* lyricue/clear_associations # NAME # clear_associations # SYNOPSIS # clear_associations () # FUNCTION # Clears all image-playlist item associations linked to current playlist # INPUTS # OUTPUT # Clears the associations table in lyricDb # SOURCE # sub clear_associations { my ($widget) = @_; debug("Disassociating images from all playlist items"); my $parentid = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; my $query = "DELETE FROM associations WHERE absoluteparent=" . $parentid; my $sth = do_query($lyricDbh, $query, FALSE); update_playlist(); } #*** #*** #****f* lyricue/init_mainWindow # NAME # init_mainWindow # SYNOPSIS # init_mainWindow() # FUNCTION # Initializing main window # INPUTS # OUTPUT # SOURCE # sub init_mainWindow { debug("Initializing main window"); # Setup file chooser # Setup bible browser biblebrowser_init(); # Load bg thumbnails my $scaled = create_pixbuf( $config->{'BGImage'}, $globals->{'icon_width'}, $globals->{'icon_height'} ); if ($scaled) { my $pixmap = Gtk3::Image->new_from_pixbuf($scaled); $widgets->{'pixmapCurr'} = $pixmap; $widgets->{'buttonCurr'} = new Gtk3::Button(); $widgets->{'buttonCurr'}->add($widgets->{'pixmapCurr'}); $widgets->{'buttonCurr'}->{user_data} = $config->{'BGImage'}; $widgets->{'main'}->get_object('vboxCurrentBG') ->pack_start($widgets->{'buttonCurr'}, FALSE, FALSE, 0); $widgets->{'pixmapCurr'}->show(); $widgets->{'buttonCurr'}->show(); $widgets->{'buttonCurr'} ->signal_connect(clicked => \&backdrop_preview_clicked); } $scaled = create_pixbuf( $config->{'BGImage'}, $globals->{'icon_width'}, $globals->{'icon_height'} ); if ($scaled) { my $pixmap = Gtk3::Image->new_from_pixbuf($scaled); $widgets->{'pixmapPrev'} = $pixmap; $widgets->{'buttonPrev'} = new Gtk3::Button(); $widgets->{'buttonPrev'}->add($widgets->{'pixmapPrev'}); $widgets->{'buttonPrev'}->{user_data} = $config->{'BGImage'}; $widgets->{'main'}->get_object('vboxPrevBG') ->pack_start($widgets->{'buttonPrev'}, FALSE, FALSE, 0); $widgets->{'pixmapPrev'}->show(); $widgets->{'buttonPrev'}->show(); $widgets->{'buttonPrev'} ->signal_connect(clicked => \&backdrop_preview_clicked); } # Update list of background/image directories bgdir_list("bg"); bgdir_list("img"); # Setup Available list and blank playlist $widgets->{'main'}->get_object('treeAvailable')->set_enable_search(TRUE); $widgets->{'main'}->get_object('treeAvailable')->set_search_column(0); update_available(); $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data} = 0; # Update the bible menu load_biblemenu(); # Update the profiles menu load_profile_menu(); # Update the application menu my $menutop2 = Gtk3::Menu->new(); my $group2 = 0; my $apps = $config->{'Apps'}; foreach (keys %$apps) { my $appMenuItem = Gtk3::MenuItem->new_with_label($_); $appMenuItem->signal_connect( activate => \&execute_app, $config->{'Apps'}->{$_} ); $appMenuItem->show; $menutop2->append($appMenuItem); } $widgets->{'main'}->get_object('applications1')->set_submenu($menutop2); # DRAG and DROP my @targets = (Gtk3::TargetEntry->new('STRING', 0, 0)); $widgets->{'main'}->get_object('treeAvailable') ->drag_source_set(['button1_mask'], \@targets, ['copy']); $widgets->{'main'}->get_object('iconviewBack') ->drag_source_set(['button1_mask'], \@targets, ['copy']); $widgets->{'main'}->get_object('iconviewImage') ->drag_source_set(['button1_mask'], \@targets, ['copy']); $widgets->{'main'}->get_object('treePlaylist') ->drag_source_set(['button1_mask'], \@targets, ['copy', 'move']); $widgets->{'main'}->get_object('treePlaylist') ->drag_dest_set('all', \@targets, ['copy', 'move']); init_preview(); init_miniview(); # Show the window finally $widgets->{'main'}->get_object('windowMain')->show; if (!(defined($globals->{'run_windowed'}) && ($globals->{'run_windowed'}))) { $widgets->{'main'}->get_object('windowMain')->maximize; } do_pending(); # Adjust frame sizes my ($width, $height) = $widgets->{'main'}->get_object('windowMain')->get_size(); if ((defined $config->{'FrameRight'}) && ($config->{'FrameRight'} != 0)) { $widgets->{'main'}->get_object('hpanedMainRight') ->set_position($config->{'FrameRight'}); $widgets->{'main'}->get_object('hpanedMainLeft') ->set_position($config->{'FrameLeft'}); } else { if ($globals->{'access'} =~ /p/) { $widgets->{'main'}->get_object('hpanedMainLeft') ->set_position($width / 5 * 2); $widgets->{'main'}->get_object('hpanedMainRight') ->set_position($width / 5 * 2); } } if (defined $widgets->{'main'}->get_object('vpanedMain')) { if ((defined $config->{'FrameMain'}) && ($config->{'FrameMain'} != 0)) { $widgets->{'main'}->get_object('vpanedMain') ->set_position($height - $config->{'FrameMain'}); } else { $widgets->{'main'}->get_object('vpanedMain') ->set_position($height - 125); } } $globals->{'hand_cursor'} = Gtk3::Gdk::Cursor->new('hand2'); $globals->{'text_cursor'} = Gtk3::Gdk::Cursor->new('xterm'); } #*** #****f* lyricue/bgdir_list # NAME # bgdir_list # SYNOPSIS # bgdir_list($type) # FUNCTION # Loading ".$type." directory list # INPUTS # $type - # OUTPUT # SOURCE # sub bgdir_list { my ($type) = @_; debug("Loading " . $type . " directory list"); my $counter = 0; my $cat = ""; my $store = Gtk3::ListStore->new('Glib::String', 'Glib::String'); my $iter = $store->append; $store->set($iter, 0, fromutf(gettext("Select Category")), 1, ""); my ($combo, $special, $dirname); if ($type eq "bg") { $combo = $widgets->{'main'}->get_object('comboBGDirList'); $special = $config->{'SpecialBack'}; $dirname = $config->{'BGDirectory'}; } else { $combo = $widgets->{'main'}->get_object('comboImgDirList'); $special = $config->{'SpecialImage'}; $dirname = $config->{'ImageDirectory'}; } $combo->clear(); $combo->set_model($store); my $renderer = Gtk3::CellRendererText->new; $combo->pack_start($renderer, TRUE); $combo->add_attribute($renderer, text => 0); my @dbcategories = (); my @dircategories = (); if ($special ne "") { my ($type, $id) = split /;/, $special; if (!defined $id) { $id = $type; $type = "db"; } $id = "00000" . $id; if ($type eq "db") { push @dbcategories, $id; } else { push @dircategories, $id; } } # Add categories from mediaDb my $query = "SELECT DISTINCT category FROM media WHERE type=\"" . $type . "\" AND category !=\"" . $special . "\" ORDER BY category"; my $sth = do_query($mediaDbh, $query, FALSE); while ($row = $sth->fetchrow_hashref()) { push @dbcategories, $row->{'category'}; } foreach $cat (sort @dbcategories) { $cat =~ s/^00000//g; debug("Adding image dir button for db-" . $cat); my $iter = $store->append; $store->set($iter, 0, $cat, 1, "db"); } # Add categories from directories my (@files, $file); $dirname =~ s/^\~/$ENV{'HOME'}/; my $ret = opendir DIR, $dirname; if ($ret) { foreach $file (sort readdir(DIR)) { if (!($file =~ /^\./) && (-d $dirname . "/" . $file)) { push @dircategories, $file; } } closedir DIR; } # Add a blank entry for files not in a subdirectory push @dircategories, "/"; foreach $cat (sort @dircategories) { $cat =~ s/^00000//g; debug("Adding image dir button for dir-" . $cat); my $iter = $store->append; $store->set($iter, 0, $cat, 1, "dir"); } $combo->set_active(0); } #*** #****f* lyricue/bgdir_change # NAME # bgdir_change # SYNOPSIS # bgdir_change ($directory) # FUNCTION # Clears background image preview buttions # Calls imgdir_load to create new buttons # INPUTS # $category - background image category to load images from # $type - 'dir' or 'db' # OUTPUT # Updated background preview buttons # SOURCE # sub bgdir_change { my ($widget) = @_; my $iter = $widget->get_active_iter; my ($category, $type) = $widget->get_model->get($iter, 0, 1); debug( "Changing background source category to " . $category . " of type " . $type); debug("Destroying old images"); $globals->{'category'} = $category; imgdir_load($widgets->{'main'}->get_object('iconviewBack'), "bg", $category, $type); debug("Background category change complete"); } #*** #****f* lyricue/imgdir_change # NAME # imgdir_change # SYNOPSIS # imgdir_change ($directory) # FUNCTION # Clears image preview buttions # Calls imgdir_load to create new buttons # INPUTS # $category - image category to load images from # $type - 'dir' or 'db' # OUTPUT # Updated background preview buttons # SOURCE # sub imgdir_change { my ($widget) = @_; my $iter = $widget->get_active_iter; my ($category, $type) = $widget->get_model->get($iter, 0, 1); debug( "Changing image source category to " . $category . " of type " . $type); debug("Destroying old images"); $globals->{'category'} = $category; imgdir_load($widgets->{'main'}->get_object('iconviewImage'), "img", $category, $type); debug("Image category change complete"); } #*** #****f* lyricue/imgdir_load # NAME # imgdir_load # SYNOPSIS # imgdir_load ($category) # FUNCTION # Create new preview pixmaps and buttons # INPUTS # $category - background image category to load images from # OUTPUT # Updated background preview buttons # SOURCE # sub imgdir_load { my ($iconview, $section, $category, $type) = @_; my $counter = 0; # update list of available backdrops debug("Loading new preview images from: " . $type . ";" . $category); $iconview->hide(); my $store = Gtk3::ListStore->new('Glib::String', 'Gtk3::Gdk::Pixbuf', 'Glib::String'); $iconview->set_model($store); $iconview->set_text_column(0); $iconview->set_pixbuf_column(1); if ($type eq "db") { my $query = "SELECT id,description FROM media WHERE category=\"" . $category . "\" AND type=\"" . $section . "\" ORDER BY description"; my $sth = do_query($mediaDbh, $query, FALSE); while ($row = $sth->fetchrow_hashref()) { do_pending(); my $iter = $store->append; $store->set($iter, 0, $row->{'description'}, 2, $type . ";" . $row->{'id'}); } } else { my $dirname = ""; if ($section eq "bg") { $dirname = $config->{'BGDirectory'} . "/" . $category; } else { $dirname = $config->{'ImageDirectory'} . "/" . $category; } my (@files, $file); my $ret = opendir DIR, $dirname; if ($ret) { foreach $file (sort readdir(DIR)) { if ((!($file =~ /^\./)) && (!(-d $dirname . "/" . $file))) { do_pending(); my $iter = $store->append; $file = fromutf($file); $store->set($iter, 0, $file, 2, $type . ";" . $dirname . "/" . $file); } } closedir DIR; } } $iconview->show(); $globals->{'thumb_idle'} = Glib::Idle->add(\&imgdir_thumbnails, $iconview); } #*** #****f* lyricue/imgdir_thumbnails # NAME # imgdir_thumbnails # SYNOPSIS # imgdir_thumbnails () # FUNCTION # Load thumbnails for imagdir # INPUTS # # OUTPUT # Thumbnails # SOURCE # sub imgdir_thumbnails { my ($iconview) = @_; debug("Loading thumbnails"); my $store = $iconview->get_model; if (!defined $store) { return; } my $iter = $store->get_iter_first; while (defined $iter) { my $id = $store->get_value($iter, 2); my $scaled = create_pixbuf( $id, $globals->{'icon_width'}, $globals->{'icon_height'} ); if ($scaled) { $store->set($iter, 1, $scaled); } my $ret = $store->iter_next($iter); if (!$ret) { undef $iter; } do_pending(); } } #*** #****f* lyricue/playlist_thumbnails # NAME # playlist_thumbnails # SYNOPSIS # playlist_thumbnails() # FUNCTION # Load thumbnails for image playlist # INPUTS # # OUTPUT # Thumbnails # SOURCE # sub playlist_thumbnails { my ($iconview) = @_; debug("Loading Playlist thumbnails"); my $playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; preview_display("plsnapshot", $playlist, "", "MINIRET"); my $store = $iconview->get_model; my $iter = $store->get_iter_first; while (defined $iter) { if (!($store->get_value($iter, 0) =~ /^/)) { my $id = "thmb;" . $store->get_value($iter, 2); my $scaled = create_pixbuf( $id, $globals->{'snapshot_width'}, $globals->{'snapshot_height'} ); if ($scaled) { $store->set($iter, 1, $scaled); } } my $ret = $store->iter_next($iter); if (!$ret) { undef $iter; } do_pending(); } } #*** #****f* lyricue/spell_check # NAME # spell_check # SYNOPSIS # spell_check () # FUNCTION # Use aspell to check spellling for a song # INPUTS # $oldwidgets # OUTPUT # Dialog listing spelling errors on each page # SOURCE # sub spell_check { my ($widget) = @_; my ($page); if ($globals->{'spell'}) { if ($widget->get_active) { debug("Running spell checker"); foreach $page ( sort { $pageOrder{$a} cmp $pageOrder{$b} } keys %pageOrder ) { if (!defined $widgets->{'spellAPage'}{$page}) { $widgets->{'spellAPage'}{$page} = GtkSpell::Checker->new(); $widgets->{'spellAPage'}{$page} ->attach($widgets->{'textAPage'}{$page}); } } } else { debug("Disable spell checker"); foreach $page ( sort { $pageOrder{$a} cmp $pageOrder{$b} } keys %pageOrder ) { if (defined $widgets->{'spellAPage'}{$page}) { $widgets->{'spellAPage'}{$page}->detach(); } } } } } #*** #****f* lyricue/create_search # NAME # create_search # SYNOPSIS # create_search ($topwidgets) # FUNCTION # Create the dialog for advanced search # INPUTS # $topwidgets - Widgets of main window # OUTPUT # Search dialog # SOURCE # sub create_search { debug("Advanced search dialog opened"); $widgets->{'search'} = load_window("dialogSearch"); my @target_table = ({'target' => "STRING", 'flags' => [], 'info' => 0},); $widgets->{'search'}->get_object('treeSearch') ->drag_source_set(['button1_mask'], ['copy'], @target_table); $widgets->{'main'}->get_object('treePlaylist') ->drag_dest_set('all', ['copy'], @target_table); my $search_text = $widgets->{'main'}->get_object('entrySearch')->get_text(); $widgets->{'search'}->get_object('entrySearchSongs') ->set_text($search_text); do_adv_search(); } #*** #*** #****f* lyricue/add_file # NAME # add_file # SYNOPSIS # add_file() # FUNCTION # Open a file dialog # INPUTS # OUTPUT # SOURCE # sub add_file { debug("Open a file dialog"); my $filexml = load_window("dialogFileChooser"); $filexml->get_object('dialogFileChooser') ->set_preview_widget(Gtk3::Image->new()); $filexml->get_object('dialogFileChooser')->set_preview_widget_active(FALSE); $filexml->get_object('dialogFileChooser') ->signal_connect('update-preview' => \&update_file_preview); $filexml->get_object('buttonFileOK') ->signal_connect(clicked => \&file_ok_sel, $filexml); $filexml->get_object('dialogFileChooser')->show_all(); } sub update_file_preview { my ($chooser) = @_; my $image = $chooser->get_preview_widget; my $filename = $chooser->get_preview_filename; if (defined $filename && ($filename ne "")) { my $pixbuf = create_pixbuf( "dir;" . $filename, $globals->{'thumb_width'}, $globals->{'thumb_height'} ); if (defined $pixbuf) { $image->set_from_pixbuf($pixbuf); $chooser->set_preview_widget_active(TRUE); return; } } $chooser->set_preview_widget_active(FALSE); } #*** #****f* lyricue/add_directory # NAME # add_directory # SYNOPSIS # add_directory() # FUNCTION # Add a directory to the playlist # INPUTS # OUTPUT # SOURCE # sub add_directory { debug("Add a directory to the playlist"); my $d = Gtk3::FileChooserDialog->new( fromutf(gettext("Choose a Directory")), $widgets->{'main'}->get_object('windowMain'), 'select-folder', fromutf(gettext("Cancel")) => "cancel", fromutf(gettext("OK")) => "accept", ); my $response = $d->run(); my $dirname = $d->get_filename(); if ("accept" eq $response) { debug("Choosing" . $dirname); } $d->destroy; do_add_directory($dirname, ""); } #*** #****f* lyricue/do_add_directory # NAME # do_add_directory # SYNOPSIS # do_add_directory($dirname,$sublist) # FUNCTION # Sublist name: # INPUTS # $dirname - # $sublist - # OUTPUT # SOURCE # sub do_add_directory { my ($dirname, $sublist) = @_; my (@files, $file); opendir DIR, $dirname || return 0; foreach $file (sort readdir(DIR)) { my $type = globs($dirname . "/" . $file); if (($type =~ /^audio/) || ($type =~ /^video/) || ($type =~ /^image/)) { push @files, $dirname . "/" . $file; } } closedir DIR; if (@files) { if ($sublist eq "") { my $sublistxml = load_window("dialogPromptEntry"); $sublistxml->get_object('dialogPromptEntry') ->set_title(fromutf(gettext("Create new sublist"))); $sublistxml->get_object('labelPromptE') ->set_text(fromutf(gettext("Name of sublist"))); my $response = $sublistxml->get_object('dialogPromptEntry')->run(); if ($response eq "ok") { $sublist = $sublistxml->get_object('entryPromptE')->get_text(); close_dialog($sublistxml->get_object('dialogPromptEntry')); } else { close_dialog($sublistxml->get_object('dialogPromptEntry')); return; } debug("Sublist name: " . $sublist); } my $playlist = new_sublist($sublist); @files = sort alphanum @files; foreach $file (@files) { do_add_file($file, $playlist); } } update_playlist(); } #*** #****f* lyricue/add_background # NAME # add_background # SYNOPSIS # add_background($widget) # FUNCTION # add background # INPUTS # $widget - # OUTPUT # SOURCE # sub add_background { debug("add background"); my ($widget) = @_; change_bgimage($widget); } #*** #****f* lyricue/change_bgimage # NAME # change_bgimage # SYNOPSIS # change_bgimage($widget) # FUNCTION # Change backdrop dialog opened # INPUTS # $widget - # OUTPUT # SOURCE # sub change_bgimage { my ($widget) = @_; my $bgimage = ""; debug("Change backdrop dialog opened"); $widgets->{'image'} = load_window("dialogImage"); $widgets->{'image'}->get_object('dialogImage') ->set_title(fromutf(gettext("Choose a Background"))); $widgets->{'image'}->get_object('buttonImageAdd') ->signal_connect(clicked => \&import_background); $widgets->{'image'}->get_object('hboxImageSublist')->hide; $widgets->{'image'}->get_object('dialogImage')->show; if ($widgets->{'image'}->get_object('treeImage')->{user_data} && ($widgets->{'image'}->get_object('treeImage')->{user_data} eq "load") ) { $widgets->{'image'}->get_object('treeImage')->{data} = (); } else { if ( defined $widgets->{'prefs'} && ($widget eq $widgets->{'prefs'}->get_object('buttonPrefBackground')) ) { $bgimage = $widgets->{'prefs'}->get_object('imagePrefBG')->{user_data}; $widgets->{'image'}->get_object('buttonImageOK') ->set_label(fromutf(gettext("Set as Default"))); $widgets->{'image'}->get_object('buttonImageOK') ->signal_connect(clicked => \&set_default_backdrop); $widgets->{'image'}->get_object('buttonImageAdd')->hide(); $widgets->{'image'}->get_object('buttonImageDelete')->hide(); $widgets->{'image'}->get_object('buttonImageChange')->hide(); } else { $widgets->{'image'}->get_object('buttonImageCancel')->hide(); $widgets->{'image'}->get_object('buttonImageOK') ->signal_connect(clicked => \&close_dialog); $widgets->{'image'}->get_object('hboxImageColour')->show(); $widgets->{'image'}->get_object('colorbuttonFontColour') ->signal_connect( button_press_event => \&open_dialogColour, "ImageFont" ); #$widgets->{'image'}->get_object('entryImageFontColour') #->signal_connect("changed" => \&change_colour_media); $widgets->{'image'}->get_object('colorbuttonShadowColour') ->signal_connect( button_press_event => \&open_dialogColour, "ImageShadow" ); #$widgets->{'image'}->get_object('entryImageShadowColour') #->signal_connect("changed" => \&change_colour_media); } $widgets->{'image'}->get_object('treeImage')->{user_data} = "load"; my $renderer = Gtk3::CellRendererText->new; $renderer->set("editable", TRUE); $renderer->signal_connect(edited => \&rename_media); my $column = Gtk3::TreeViewColumn->new_with_attributes("Filename", $renderer, text => 0); $widgets->{'image'}->get_object('treeImage')->append_column($column); } update_imagedir("bg", ""); return TRUE; } #*** #****f* lyricue/create_dialogSublist # NAME # create_dialogSublist # SYNOPSIS # create_dialogSublist ($widgets) # FUNCTION # Create the dialog for adding a sublist # INPUTS # $widgets - Widgets of main window # OUTPUT # Dialog # SOURCE # sub create_dialogSublist { debug("create sublist dialog"); my $sublistxml = load_window("dialogPromptEntry"); $sublistxml->get_object('dialogPromptEntry') ->set_title(fromutf(gettext("Create new sublist"))); $sublistxml->get_object('labelPromptE') ->set_text(fromutf(gettext("Name of sublist"))); $sublistxml->get_object('buttonPromptEOK') ->signal_connect(clicked => \&new_sublist_from_xml, $sublistxml); } #*** #*** #****f* lyricue/get_buffer_text # NAME # get_buffer_text # SYNOPSIS # get_buffer_text($widget) # FUNCTION # # INPUTS # $widget - # OUTPUT # SOURCE # sub get_buffer_text { my ($widget) = @_; return $widget->get_text($widget->get_bounds, FALSE); } #*** #****f* lyricue/on_treeAvailable_drag_data_get # NAME # on_treeAvailable_drag_data_get # SYNOPSIS # on_treeAvailable_drag_data_get($widget, $context, $data, $info, $time) # FUNCTION # Dragged from available songs # INPUTS # $widget - # $context - # $data - # $info - # $time - # OUTPUT # SOURCE # sub on_treeAvailable_drag_data_get { my ($widget, $context, $data, $info, $time) = @_; debug("Dragged from available songs"); my $selection = $widget->get_selection; my ($sel, $model) = $selection->get_selected_rows; my $iter = $model->get_iter(@$sel[0]); if ($iter) { $data->set_text($model->get($iter, 3),-1); } } #*** #****f* lyricue/on_iconviewBack_drag_data_get # NAME # on_iconviewBack_drag_data_get # SYNOPSIS # on_iconviewBack_drag_data_get($widget, $context, $data, $info, $time) # FUNCTION # Dragged from Backgrounds # INPUTS # $widget - # $context - # $data - # $info - # $time - # OUTPUT # SOURCE # sub on_iconviewBack_drag_data_get { my ($widget, $context, $data, $info, $time) = @_; debug("Dragged from Backgrounds"); my $selected = ""; my @list = $widget->get_selected_items; if (defined $list[0]) { my $model = $widget->get_model; my $iter = $model->get_iter($list[0][0]); $selected = $model->get($iter, 2); } if ($selected ne "") { $data->set_text("bg:" . $selected,-1); } } #*** #****f* lyricue/on_iconviewImage_drag_data_get # NAME # on_iconviewImage_drag_data_get # SYNOPSIS # on_iconviewImage_drag_data_get($widget, $context, $data, $info, $time) # FUNCTION # Dragged from Images # INPUTS # $widget - # $context - # $data - # $info - # $time - # OUTPUT # SOURCE # sub on_iconviewImage_drag_data_get { my ($widget, $context, $data, $info, $time) = @_; debug("Dragged from Images"); my $selected = ""; my @list = $widget->get_selected_items; if (defined $list[0]) { my $model = $widget->get_model; my $iter = $model->get_iter($list[0][0]); $selected = $model->get($iter, 2); } if ($selected ne "") { $data->set_text("img:" . $selected,-1); } } #*** #****f* lyricue/on_treeSearch_drag_data_get # NAME # on_treeSearch_drag_data_get # SYNOPSIS # on_treeSearch_drag_data_get($widget, $context, $data, $info, $time) # FUNCTION # Dragged from advanced search # INPUTS # $widget - # $context - # $data - # $info - # $time - # OUTPUT # SOURCE # sub on_treeSearch_drag_data_get { my ($widget, $context, $data, $info, $time) = @_; debug("Dragged from advanced search"); my $selection = $widget->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { $data->set_text($model->get($iter, 4),-1); } } #*** #****f* lyricue/on_treePlaylist_drag_data_get # NAME # on_treePlaylist_drag_data_get # SYNOPSIS # on_treePlaylist_drag_data_get($widget, $context, $data, $info, $time) # FUNCTION # Dragged from playlist # INPUTS # $widget - # $context - # $data - # $info - # $time - # OUTPUT # SOURCE # sub on_treePlaylist_drag_data_get { my ($widget, $context, $data, $info, $time) = @_; debug("Dragged from Playlist"); my $selection = $widget->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { $data->set_text("song:" . $model->get($iter, 2),-1); return TRUE; } return FALSE; } #*** #****f* lyricue/on_treePlaylist_drag_data_received # NAME # on_treePlaylist_drag_data_received # SYNOPSIS # on_treePlaylist_drag_data_received($widget, $context, $x, $y, $data, $info, $time) # FUNCTION # Dropped on playlist # INPUTS # $widget - # $context - # $x - # $y - # $data - # $info - # $time - # OUTPUT # SOURCE # sub on_treePlaylist_drag_data_received { my ($widget, $context, $x, $y, $data, $info, $time) = @_; my ($u1, $file); # Catch duplicate events if (defined($globals->{'drop_time'}) && ($globals->{'drop_time'} == $time)) { return; } $globals->{'drop_time'} = $time; debug("Dropped on playlist"); if (($data->get_text()) ne "") { debug("Received: " . $data->get_text()); if ($data->get_text() =~ /^file:/i) { for my $uri (split(/\n/, $data->get_text())) { $u1 = URI->new($uri); debug("received URI: " . $uri); $file = fromutf("UTF-8", $u1->file); debug("Recieved file: " . $file); my $main_playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist') ->{user_data}; do_add_file($file, $main_playlist); update_playlist(); } } elsif ($data->get_text() =~ /^img:/) { my $selected = $data->get_text(); $selected =~ s/^img://g; my $playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist') ->{user_data}; add_image_item($playlist, $selected); update_playlist(); } elsif ($data->get_text() =~ /^bg:/) { my $selected = fromutf($data->get_text()); $selected =~ s/^bg://g; my $playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist') ->{user_data}; my ($path, $drop); ($path, $drop) = $widget->get_dest_row_at_pos($x, $y); debug($path . ":" . $drop); if ($drop =~ /^into/) { my $iter = $widget->get_model->get_iter($path); my $item = $widget->get_model->get($iter, 2); @ASSOCIATE = ($item, $playlist); debug($item . ":" . $playlist . ":" . $selected); associate_bg($selected); update_playlist(); } } elsif ($data->get_text() =~ /^song:/) { my $song = $data->get_text(); $song =~ s/^song://g; my ($path, $drop) = $widget->get_dest_row_at_pos($x, $y); my $iter = $widget->get_model->get_iter($path); my $item = $widget->get_model->get($iter, 2); debug($song . " - " . $drop . " - " . $item); move_item($song, $drop, $item); } else { if ($data->get_text() != 0) { add_single_song($data->get_text()); update_playlist(); } } #$context->finish(1, 0, $time); return; } #$context->finish(0, 0, $time); } #*** #****f* lyricue/display_message # NAME # display_message # SYNOPSIS # display_message($message, $details) # FUNCTION # debug($message); # INPUTS # $message - # $details - # OUTPUT # SOURCE # sub display_message { my ($message, $details) = @_; debug($message); my $errorxml = load_window("dialogError"); $errorxml->get_object('labelError')->set_text($message); if ((!defined $details) || ($details eq "")) { $errorxml->get_object('expanderDetails')->hide(); } else { $errorxml->get_object('labelErrorDetails')->set_text($details); } my $confirm = $errorxml->get_object('dialogError')->run(); close_dialog($errorxml->get_object('dialogError')); } #*** #****f* lyricue/display_fatal # NAME # display_fatal # SYNOPSIS # display_fatal($message, $error) # FUNCTION # # INPUTS # $message - # $error - # OUTPUT # SOURCE # sub display_fatal { my ($message, $error) = @_; display_error($message, $error, TRUE); } sub database_failure { my ($message, $error) = @_; display_error($message, $error, TRUE); } sub display_error { my ($message, $error, $fatal) = @_; print STDERR "\n\n-------------\n"; if ($fatal) { print STDERR "FATAL ERROR!!\n"; } else { print STDERR "ERROR!!\n"; } print STDERR "-------------\n"; print STDERR "Error description\n"; print STDERR $message . "\n"; print STDERR "------------------\n"; my $errorxml = load_window('dialogError'); $errorxml->get_object('labelError')->set_text($message); if ($error eq "") { $errorxml->get_object('expanderDetails')->hide(); } else { $errorxml->get_object('labelErrorDetails')->set_text($error); } my $confirm = $errorxml->get_object('dialogError')->run(); close_dialog($errorxml->get_object('dialogError')); print STDERR "Full error message\n"; print STDERR "------------------\n"; if ($fatal) { die($error); } } #*** #****f* lyricue/transition_type_changed # NAME # transition_type_changed # SYNOPSIS # transition_type_changed() # FUNCTION # Change the list of transition options # INPUTS # OUTPUT # SOURCE sub transition_type_changed { my ($widget) = @_; debug("Transition type changed"); if ($widget eq $widgets->{'main'}->get_object('radioTransFade')) { } elsif ($widget eq $widgets->{'main'}->get_object('radioTransSlide')) { if ($widget->get_active) { $widgets->{'main'}->get_object('tableTransDir')->show_all(); } else { $widgets->{'main'}->get_object('tableTransDir')->hide(); } } elsif ($widget eq $widgets->{'main'}->get_object('radioTransRotate')) { if ($widget->get_active) { $widgets->{'main'}->get_object('tableTransRot')->show_all(); } else { $widgets->{'main'}->get_object('tableTransRot')->hide(); } } } sub transition_dir_changed { my ($widget) = @_; debug("Direction changed"); if ($widget->get_active == FALSE) { return; } my @dirs = ( 'UpLeft', 'Up', 'UpRight', 'Left', 'None', 'Right', 'DownLeft', 'Down', 'DownRight' ); if ($widget->get_name() =~ /^toggleIn/) { foreach (@dirs) { my $w = "toggleIn" . $_; if ($widget->get_name eq $w) { $widgets->{'main'}->get_object($w)->set_active(TRUE); } else { $widgets->{'main'}->get_object($w)->set_active(FALSE); } } } elsif ($widget->get_name =~ /^toggleOut/) { foreach (@dirs) { my $w = "toggleOut" . $_; if ($widget->get_name eq $w) { $widgets->{'main'}->get_object($w)->set_active(TRUE); } else { $widgets->{'main'}->get_object($w)->set_active(FALSE); } } } } #*** #****f* lyricue/apply_transition_selected # NAME # apply_transition_selected # SYNOPSIS # apply_transition_selected() # FUNCTION # Apply transition to selected items # INPUTS # OUTPUT # SOURCE # sub apply_transition_selected { debug("Apply transition to selected items"); if ($widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data} == -1) { return; } my $trans_type = calculate_transition(); my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; if ($selection) { my ($list, $model) = $selection->get_selected_rows(); foreach (@$list) { apply_transition($model->get($model->get_iter($_), 2), $trans_type); } } update_playlist(); } #*** #****f* lyricue/apply_transition_playlist # NAME # apply_transition_playlist # SYNOPSIS # apply_transition_playlist() # FUNCTION # Apply transition to playlist # INPUTS # OUTPUT # SOURCE # sub apply_transition_playlist { debug("Apply transition to playlist"); my $playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; if ($playlist == -1) { return; } my $trans_type = calculate_transition(); my $query = "SELECT playorder FROM playlist WHERE playlist=" . $playlist; my $sth = do_query($lyricDbh, $query, FALSE); while (my @row = $sth->fetchrow_array()) { apply_transition($row[0], $trans_type); } update_playlist(); } #*** #****f* lyricue/calculate_transition # NAME # calculate_transition # SYNOPSIS # calculate_transition() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub calculate_transition { debug("Calculating transition code"); my $trans_type = DEFAULT; if ($widgets->{'main'}->get_object('radioTransNone')->get_active()) { $trans_type = NOTRANS; } elsif ($widgets->{'main'}->get_object('radioTransFade')->get_active()) { $trans_type = FADE; } elsif ($widgets->{'main'}->get_object('radioTransSlide')->get_active()) { $trans_type = SLIDE_TEXT; } elsif ($widgets->{'main'}->get_object('radioTransRotate')->get_active()) { $trans_type = ROTATE_TEXT; } elsif ($widgets->{'main'}->get_object('radioTransRandom')->get_active()) { $trans_type = RANDOM; } my @dirs = ( 'UpLeft', 'Up', 'UpRight', 'Left', 'None', 'Right', 'DownLeft', 'Down', 'DownRight' ); my $indir = ""; my $outdir = ""; foreach (@dirs) { if ($widgets->{'main'}->get_object("toggleIn" . $_)->get_active()) { $indir = $_; } if ($widgets->{'main'}->get_object("toggleOut" . $_)->get_active()) { $outdir = $_; } } # Set in direction $trans_type = $trans_type << NUM_TRANS; $_ = $indir; if (/Up/) { $trans_type = $trans_type + UP; } elsif (/Down/) { $trans_type = $trans_type + DOWN; } if (/Left/) { $trans_type = $trans_type + LEFT; } elsif (/Right/) { $trans_type = $trans_type + RIGHT; } if ($widgets->{'main'}->get_object('toggleRotX')->get_active()) { $trans_type = $trans_type + X_AXIS; } if ($widgets->{'main'}->get_object('toggleRotY')->get_active()) { $trans_type = $trans_type + Y_AXIS; } if ($widgets->{'main'}->get_object('toggleRotZ')->get_active()) { $trans_type = $trans_type + Z_AXIS; } # Set out direction $trans_type = $trans_type << NUM_TRANS; $_ = $outdir; if (/Up/) { $trans_type = $trans_type + UP; } elsif (/Down/) { $trans_type = $trans_type + DOWN; } if (/Left/) { $trans_type = $trans_type + LEFT; } elsif (/Right/) { $trans_type = $trans_type + RIGHT; } if ($widgets->{'main'}->get_object('toggleRotX')->get_active()) { $trans_type = $trans_type + X_AXIS; } if ($widgets->{'main'}->get_object('toggleRotY')->get_active()) { $trans_type = $trans_type + Y_AXIS; } if ($widgets->{'main'}->get_object('toggleRotZ')->get_active()) { $trans_type = $trans_type + Z_AXIS; } return $trans_type; } #*** #****f* lyricue/apply_transition # NAME # apply_transition # SYNOPSIS # apply_transition($item, $trans_type) # FUNCTION # Applying transition to # INPUTS # $item - # $trans_type - # OUTPUT # SOURCE # sub apply_transition { my ($item, $trans_type) = @_; debug("Applying transition to " . $item); my $query = "SELECT type,data FROM playlist WHERE playorder=" . $item; my $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); if ($row[0] eq "play") { $query = "UPDATE playlist SET transition=" . $trans_type . " WHERE playorder=" . $item . " OR playlist=" . $row[1]; } else { $query = "UPDATE playlist SET transition=" . $trans_type . " WHERE playorder=" . $item; } $sth = do_query($lyricDbh, $query, FALSE); } #*** #****f* lyricue/mod # NAME # mod # SYNOPSIS # mod($inp, $div) # FUNCTION # # INPUTS # $inp - # $div - # OUTPUT # SOURCE # sub mod { my ($inp, $div) = @_; my $rem = (($inp / $div) - (int($inp / $div))) * $div; return $rem; } #*** #****f* lyricue/user_admin # NAME # user_admin # SYNOPSIS # user_admin() # FUNCTION # User access administration # INPUTS # OUTPUT # SOURCE # sub user_admin { debug("User access administration"); $widgets->{'admin'} = load_window('dialogAdmin'); eval { open(ACCESS, $globals->{'accessfile'}); }; if ($@) { debug("No existing access.conf"); } else { my $users = 0; my (@username, @useraccess); while () { ($username[$users], $useraccess[$users]) = split(/=/, $_, 2); $username[$users] =~ s/ *$//g; $useraccess[$users] =~ s/ *$//g; $users++; } close ACCESS; $widgets->{'admin'}->get_object('tableAccess')->resize($users, 6); foreach my $count (0 .. ($users - 1)) { debug("Users: " . $username[$count]); $widgets->{'adminUsername'}[$count] = Gtk3::Label->new($username[$count]); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminUsername'}[$count], 0, 1, $count + 2, $count + 3, 'fill', 'expand', 0, 0); $widgets->{'adminPlaylist'}[$count] = Gtk3::CheckButton->new(); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminPlaylist'}[$count], 1, 2, $count + 2, $count + 3, 'fill', 'expand', 0, 0); $widgets->{'adminEdit'}[$count] = Gtk3::CheckButton->new(); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminEdit'}[$count], 2, 3, $count + 2, $count + 3, 'fill', 'expand', 0, 0); $widgets->{'adminDelete'}[$count] = Gtk3::CheckButton->new(); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminDelete'}[$count], 3, 4, $count + 2, $count + 3, 'fill', 'expand', 0, 0); $widgets->{'adminDisplay'}[$count] = Gtk3::CheckButton->new(); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminDisplay'}[$count], 4, 5, $count + 2, $count + 3, 'fill', 'expand', 0, 0); $widgets->{'adminAdmin'}[$count] = Gtk3::CheckButton->new(); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminAdmin'}[$count], 5, 6, $count + 2, $count + 3, 'fill', 'expand', 0, 0); $_ = $useraccess[$count]; if (/p/) { $widgets->{'adminPlaylist'}[$count]->set_active(TRUE); } if (/e/) { $widgets->{'adminEdit'}[$count]->set_active(TRUE); } if (/d/) { $widgets->{'adminDelete'}[$count]->set_active(TRUE); } if (/s/) { $widgets->{'adminDisplay'}[$count]->set_active(TRUE); } if (/a/) { $widgets->{'adminAdmin'}[$count]->set_active(TRUE); } } $widgets->{'admin'}->get_object('tableAccess')->show_all(); } my $confirm = $widgets->{'admin'}->get_object('dialogAdmin')->run(); if ($confirm eq "ok") { open(ACCESS, ">" . $globals->{'accessfile'}) || display_fatal( $errorcodes->{'fileopenwrite'} . $globals->{'accessfile'}, $! . "\nSQL: " . $query); my $users = ($widgets->{'admin'}->get_object('tableAccess')->get('n-rows') - 2); foreach my $count (0 .. ($users - 1)) { my $out = $widgets->{'adminUsername'}[$count]->get_text() . " = "; if ($widgets->{'adminPlaylist'}[$count]->get_active()) { $out .= "p"; } if ($widgets->{'adminEdit'}[$count]->get_active()) { $out .= "e"; } if ($widgets->{'adminDelete'}[$count]->get_active()) { $out .= "d"; } if ($widgets->{'adminDisplay'}[$count]->get_active()) { $out .= "s"; } if ($widgets->{'adminAdmin'}[$count]->get_active()) { $out .= "a"; } print ACCESS $out . "\n"; } close ACCESS; } $widgets->{'admin'}->get_object('dialogAdmin')->destroy(); $globals->{'access'} = load_access(); } #*** #****f* lyricue/load_access # NAME # load_access # SYNOPSIS # load_access() # FUNCTION # Loading access settings # INPUTS # OUTPUT # SOURCE # sub load_access { debug("Loading access settings"); my $access = "blank"; # Load the access settings if ($^O eq 'MSWin32') { $access = "spade"; } else { open(ACCESS, $globals->{'accessfile'}) || display_fatal( $errorcodes->{'fileopenread'} . $globals->{'accessfile'}, $! . "\n"); my $username = getpwuid($<); while () { chomp; if (/^$username/) { $access = $_; $access =~ s/^.*= *//g; } } close ACCESS; } if ($access eq "blank") { $access = "spade"; } debug("Access set at " . $access); $_ = $access; my @remove_items = (); my @show_items = (); if (!/e/) { push @remove_items, @edit_items; } else { push @show_items, @edit_items; } if (!/d/) { push @remove_items, @delete_items; } else { push @show_items, @delete_items; } if (!/s/) { push @remove_items, @display_items; } else { push @show_items, @display_items; } if (!/p/) { push @remove_items, @playlist_items; } else { push @show_items, @playlist_items; } if (!/a/) { push @remove_items, @admin_items; } else { push @show_items, @admin_items; } if (!-w $globals->{'accessfile'}) { push @remove_items, "user_administration1"; } foreach my $item (@show_items) { if (defined $widgets->{'main'}->get_object($item)) { $widgets->{'main'}->get_object($item)->show(); } } foreach my $item (@remove_items) { if (defined $widgets->{'main'}->get_object($item)) { $widgets->{'main'}->get_object($item)->hide(); } } return $access; } #*** #****f* lyricue/add_user # NAME # add_user # SYNOPSIS # add_user() # FUNCTION # Adding a user # INPUTS # OUTPUT # SOURCE # sub add_user { debug("Adding a user"); my $userxml = load_window('dialogPromptEntry'); $userxml->get_object('dialogPromptEntry') ->set_title(fromutf(gettext("Add a user"))); $userxml->get_object('labelPromptE') ->set_text(fromutf(gettext("Enter username"))); my $confirm = $userxml->get_object('dialogPromptEntry')->run(); if ($confirm eq "ok") { my $users = ($widgets->{'admin'}->get_object('tableAccess')->get('n-rows') - 2); debug("Users :" . $users); $widgets->{'admin'}->get_object('tableAccess')->resize($users + 3, 6); $widgets->{'adminUsername'}[$users] = Gtk3::Label->new($userxml->get_object('entryPromptE')->get_text()); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminUsername'}[$users], 0, 1, $users + 2, $users + 3, 'fill', 'expand', 0, 0); $widgets->{'adminPlaylist'}[$users] = Gtk3::CheckButton->new(); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminPlaylist'}[$users], 1, 2, $users + 2, $users + 3, 'fill', 'expand', 0, 0); $widgets->{'adminEdit'}[$users] = Gtk3::CheckButton->new(); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminEdit'}[$users], 2, 3, $users + 2, $users + 3, 'fill', 'expand', 0, 0); $widgets->{'adminDelete'}[$users] = Gtk3::CheckButton->new(); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminDelete'}[$users], 3, 4, $users + 2, $users + 3, 'fill', 'expand', 0, 0); $widgets->{'adminDisplay'}[$users] = Gtk3::CheckButton->new(); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminDisplay'}[$users], 4, 5, $users + 2, $users + 3, 'fill', 'expand', 0, 0); $widgets->{'adminAdmin'}[$users] = Gtk3::CheckButton->new(); $widgets->{'admin'}->get_object('tableAccess') ->attach($widgets->{'adminAdmin'}[$users], 5, 6, $users + 2, $users + 3, 'fill', 'expand', 0, 0); } $widgets->{'admin'}->get_object('tableAccess')->show_all(); close_dialog($userxml->get_object('dialogPromptEntry')); } #*** #****f* lyricue/search_changed # NAME # search_changed # SYNOPSIS # search_changed() # FUNCTION # Search changed # INPUTS # OUTPUT # SOURCE # sub search_changed { debug("Search changed"); reset_timer($globals->{'update_timer'}); $globals->{'update_timer'} = Glib::Timeout->add(500, \&update_available); } #*** #****f* lyricue/search_activated # NAME # search_activated # SYNOPSIS # search_activated() # FUNCTION # Search activated # INPUTS # OUTPUT # SOURCE # sub search_activated { debug("Search activated"); my $model = $widgets->{'main'}->get_object('treeAvailable')->get_model; my $iter = $model->get_iter_first; if (defined $iter) { my $songid = $model->get($iter, 3); add_single_song($songid); update_playlist(); } } #*** #****f* lyricue/navigator_activated # NAME # navigator_activated # SYNOPSIS # navigator_activated() # FUNCTION # Navigator activated # INPUTS # OUTPUT # SOURCE # sub navigator_activated { debug("Navigator activated"); my $verse = $widgets->{'main'}->get_object('entryNavVerse')->get_active_text(); my $store = $widgets->{'main'}->get_object('entryNavVerse')->get_model(); if (!defined $store) { $store = Gtk3::ListStore->new('Glib::String'); $widgets->{'main'}->get_object('entryNavVerse')->set_model($store); } $store->set($store->prepend, 0, $verse); navigator_add(); } #*** #****f* lyricue/init_preview # NAME # init_preview # SYNOPSIS # init_preview() # FUNCTION # init preview # INPUTS # OUTPUT # SOURCE # sub init_preview { debug("init preview"); # Start/stop preview as needed if ($config->{'DynamicPreview'}) { if (!defined($widgets->{'preview'})) { $globals->{'preview_starting'} = 5; $widgets->{'main'}->get_object('checkPreview')->set_active(TRUE); $widgets->{'main'}->get_object('framePreview')->show(); $widgets->{'main'}->get_object('framePreview') ->set_size_request(100, 75); $widgets->{'main'}->get_object('framePreview') ->set(0.5, 0.5, $config->{'Width'} / $config->{'Height'}, 0); $widgets->{'preview'} = Gtk3::Socket->new; $widgets->{'preview'}->show; $widgets->{'main'}->get_object('framePreview') ->add($widgets->{'preview'}); $widgets->{'preview'}->set_size_request(-1, -1); debug( sprintf( "%s -r %s -m %d -l %d -p '%s' -t preview", $globals->{'lyricue_server'}, $globals->{'mysqlhost'}, $widgets->{'preview'}->get_id, $globals->{'preview_port'}, $globals->{'profile'} ) ); $globals->{'preview_pid'} = fork; if ($globals->{'preview_pid'} < 0) { display_fatal( "Unable to start the lyricue server as a preview window", $! . "\nSQL: " . $query); } if ($globals->{'preview_pid'} == 0) { my $debug_cmd = ""; if ($globals->{'debugging'}) { $debug_cmd = "-d"; } exec( sprintf( "%s -r %s -m %d -l %d -p '%s' %s -t preview\n", $globals->{'lyricue_server'}, $globals->{'mysqlhost'}, $widgets->{'preview'}->get_id, $globals->{'preview_port'}, $globals->{'profile'}, $debug_cmd ) ); } $widgets->{'preview'}->signal_connect( 'plug-removed' => sub { debug("Lyricue preview died..restarting\n"); $widgets->{'main'}->get_object('framePreview') ->remove($widgets->{'preview'}); $widgets->{'preview'}->destroy; undef $widgets->{'preview'}; kill 9, $globals->{'preview_pid'}; init_preview(); 1; } ); } } else { if ($widgets->{'preview'}) { $widgets->{'preview'}->destroy; undef $widgets->{'preview'}; kill 9, $globals->{'preview_pid'}; } $widgets->{'main'}->get_object('framePreview')->hide(); $widgets->{'main'}->get_object('checkPreview')->set_active(FALSE); } } #*** #****f* lyricue/init_miniview # NAME # init_miniview # SYNOPSIS # init_miniview() # FUNCTION # init miniview # INPUTS # OUTPUT # SOURCE # sub init_miniview { # Start/stop miniview as needed if ($config->{'Miniview'}) { $widgets->{'main'}->get_object('vboxCurrent')->show(); $widgets->{'main'}->get_object('checkCurrent')->set_active(TRUE); foreach my $display (keys %$displays) { if (($displays->{$display}->{'active'} & GONE) == GONE) { close_miniview($display); delete $displays->{$display}; } elsif (!defined($widgets->{'miniview'}->{$display})) { $widgets->{'miniview'}->{$display} = Gtk3::Socket->new; $widgets->{'miniview'}->{$display}->set_size_request(100, 75); $widgets->{'miniview_check'}->{$display} = Gtk3::CheckButton->new($displays->{$display}->{'title'}); $widgets->{'miniview_check'}->{$display}->set_active(TRUE); $widgets->{'miniview_check'}->{$display}->set_halign("end"); $widgets->{'miniview_frame'}->{$display} = Gtk3::AspectFrame->new("", 0.5, 0.5, $config->{'Width'} / $config->{'Height'}, FALSE); $widgets->{'miniview_frame'}->{$display} ->add($widgets->{'miniview'}->{$display}); $widgets->{'main'}->get_object('vboxCurrent') ->pack_end($widgets->{'miniview_frame'}->{$display}, TRUE, TRUE, 0); $widgets->{'main'}->get_object('vboxCurrent') ->pack_end($widgets->{'miniview_check'}->{$display}, FALSE, FALSE, 0); $widgets->{'miniview_check'}->{$display}->show; $widgets->{'miniview_frame'}->{$display}->show; $widgets->{'miniview'}->{$display}->show; $widgets->{'miniview_frame'}->{$display} ->set_size_request(-1, -1); my $command = sprintf( "%s -r %s -m %d -l %d -p '%s' -t miniview -e '%s'\n", $globals->{'lyricue_server'}, $globals->{'mysqlhost'}, $widgets->{'miniview'}->{$display}->get_id, $globals->{'preview_port'}, $globals->{'profile'}, $displays->{$display}->{'host'} ); debug($command); $globals->{'miniview_pid'}->{$display} = fork; if ($globals->{'miniview_pid'}->{$display} < 0) { display_fatal( "Unable to start the lyricue server as a miniview window", $! . "\nSQL: " . $query ); } if ($globals->{'miniview_pid'}->{$display} == 0) { exec($command ); } $widgets->{'miniview'}->{$display}->signal_connect( 'plug-removed' => sub { debug("Lyricue miniview died..restarting"); $widgets->{'main'}->get_object('vboxCurrent') ->remove($widgets->{'miniview_frame'}->{'$display'}); init_miniview(); 1; } ); $widgets->{'miniview_check'}->{$display}->signal_connect( toggled => \&toggle_server_active, $display ); } if ($miniviews->{$display}) { $miniviews->{$display}->{'active'} &= TRUE; # Clear check bit } } } else { if (defined $widgets->{'miniview'}) { my $miniviews = $widgets->{'miniview'}; foreach my $display (keys %$miniviews) { close_miniview($display); } } if (defined $widgets->{'main'}) { $widgets->{'main'}->get_object('vboxCurrent')->hide(); $widgets->{'main'}->get_object('checkCurrent')->set_active(FALSE); } } } #*** #****f* lyricue/quick_save # NAME # quick_save # SYNOPSIS # quick_save() # FUNCTION # Quick Save # INPUTS # OUTPUT # SOURCE # sub quick_save { debug("Quick Save"); my $buffer = $widgets->{'main'}->get_object('textQuick')->get_buffer(); my $songtext = $buffer->get_text($buffer->get_bounds, FALSE); my $playorder = $widgets->{'main'}->get_object('textQuick')->{user_data}; my $query = "SELECT data,type FROM playlist WHERE playorder=" . $playorder; my $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); if ($row[1] eq "play") { $query = "SELECT data,type FROM playlist WHERE playlist=" . $row[0] . " ORDER BY playorder"; $sth = do_query($lyricDbh, $query, FALSE); @row = $sth->fetchrow_array(); } if (($row[1] eq "song") || ($row[1] eq "temp")) { if (!defined $row[0]) { $row[0] = ""; } $query = "UPDATE page SET lyrics=" . $lyricDbh->quote($songtext) . " WHERE pageid=" . $row[0]; $sth = do_query($lyricDbh, $query, FALSE); } update_playlist(); } #****f* lyricue/quick_save_local # NAME # quick_save_local # SYNOPSIS # quick_save_local() # FUNCTION # Quick Save # INPUTS # OUTPUT # SOURCE # sub quick_save_local { debug("Quick Save Local"); my $buffer = $widgets->{'main'}->get_object('textQuick')->get_buffer(); my $songtext = $buffer->get_text($buffer->get_bounds, FALSE); my $playorder = $widgets->{'main'}->get_object('textQuick')->{user_data}; my $query = "SELECT data,type FROM playlist WHERE playorder=" . $playorder; my $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); if ($row[1] eq "play") { $query = "SELECT data,type,playorder FROM playlist WHERE playlist=" . $row[0] . " ORDER BY playorder"; $sth = do_query($lyricDbh, $query, FALSE); @row = $sth->fetchrow_array(); $playorder = $row[2]; } if ($row[1] eq "song") { if (!defined $row[0]) { $row[0] = ""; } $query = "SELECT songid FROM page WHERE pageid=" . $row[0]; $sth = do_query($lyricDbh, $query, FALSE); @row = $sth->fetchrow_array(); my $songid = $row[0]; $query = "INSERT INTO page (pagenum,songid,lyrics) VALUES ( 0," . -$songid . ", " . $lyricDbh->quote($songtext) . ")"; $sth = do_query($lyricDbh, $query, FALSE); my $pageid = $lyricDbh->{'mysql_insertid'}; $query = "UPDATE playlist SET type=\"temp\", data=\"" . $pageid . "\" WHERE playorder=" . $playorder; $sth = do_query($lyricDbh, $query, FALSE); } elsif ($row[1] eq "temp") { if (!defined $row[0]) { $row[0] = ""; } $query = "UPDATE page SET lyrics=" . $lyricDbh->quote($songtext) . " WHERE pageid=" . $row[0]; $sth = do_query($lyricDbh, $query, FALSE); } update_playlist(); } # Just put the text in the quickview section onto the screen #*** #****f* lyricue/quick_show # NAME # quick_show # SYNOPSIS # quick_show() # FUNCTION # Quickshow textarea # INPUTS # OUTPUT # SOURCE # sub quick_show { debug("Quickshow textarea"); my $buffer = $widgets->{'main'}->get_object('textQuick')->get_buffer(); my $songtext = $buffer->get_text($buffer->get_bounds, FALSE); $songtext =~ s/\n/#BREAK#/g; $songtext =~ s/:/#SEMI#/g; update_display("preview", "ignore", $songtext); } #*** #****f* lyricue/quick_osd # NAME # quick_osd # SYNOPSIS # quick_osd() # FUNCTION # Quickshow OSD # INPUTS # OUTPUT # SOURCE # sub quick_osd { my ($widget) = @_; debug("Update OSD"); my $songtext = ""; if ( ($widgets->{'main'}->get_object('buttonQuickOSD')->get_active()) || ($widget eq $widgets->{'main'}->get_object('entryMainOSD'))) { $songtext = $widgets->{'main'}->get_object('entryMainOSD')->get_text; $songtext =~ s/\n/#BREAK#/g; $songtext =~ s/:/#SEMI#/g; } update_display("osd", "default", $songtext); } #*** #****f* lyricue/resize_preview # NAME # resize_preview # SYNOPSIS # resize_preview($widget, $event) # FUNCTION # Called when the preview windows are resized # INPUTS # $widget - # $event - # OUTPUT # SOURCE # sub resize_preview { my ($widget, $event) = @_; #print $event."\n"; #debug ("Resizing previews"); #my $pos = $widgets->{'main'}->get_object('hpanedMainRight')->get_position(); #my ($width,$height) = $widgets->{'preview'}->get_size(); #print ("$width * $height\n"); return FALSE; } # Return a Gdk::Pixbuf of the given media at the given res #*** #****f* lyricue/create_pixbuf # NAME # create_pixbuf # SYNOPSIS # create_pixbuf($data, $width, $height) # FUNCTION # # INPUTS # $data - # $width - # $height - # OUTPUT # SOURCE # sub create_pixbuf { my ($data, $width, $height) = @_; my ($pixbuf); my ($type, $id) = split /;/, $data; if ($type eq "thmb") { my $query = "SELECT snapshot FROM playlist WHERE playorder=\"" . $id . "\""; my $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); if (defined $row[0]) { my $pixbuf_loader = Gtk3::Gdk::PixbufLoader->new(); eval { $pixbuf_loader->write($row[0]); }; eval { $pixbuf_loader->close() }; $pixbuf = $pixbuf_loader->get_pixbuf(); } else { return; } if ($width == 0) { return $pixbuf; } else { return $pixbuf->scale_simple($width, $height, 'nearest'); } } elsif ($type eq "dir") { if (-d $id) { return; } if (($width > $globals->{'thumb_width'}) || ($width == 0)) { # Bigger than cache value so just send new pixbuf my $type = globs($id); if ($type =~ /^image/){ # Pixbuf only works for images $pixbuf = Gtk3::Gdk::Pixbuf->new_from_file_at_scale($id, $width, $height, TRUE); if (defined $pixbuf) { return $pixbuf; } } # Otherwise drop to thumbnailing } my $mtime = (stat($id))[9]; $id =~ s/\/+/\//g; my $gfile = Glib::IO::File::new_for_path($id); if (!$gfile->query_exists()) { return undef; } my $thumbpath = $globals->{'thumbnail_factory'}->lookup($gfile->get_uri(), $mtime); if (defined $thumbpath) { $pixbuf = Gtk3::Gdk::Pixbuf->new_from_file_at_scale($thumbpath, $width, $height, TRUE); } else { my $mimetype = globs($id); if ($mimetype && $globals->{'thumbnail_factory'}->can_thumbnail($gfile->get_uri(),$mimetype,$mtime)) { $pixbuf = $globals->{'thumbnail_factory'} ->generate_thumbnail($gfile->get_uri(),$mimetype); $globals->{'thumbnail_factory'} ->save_thumbnail($pixbuf, $gfile->get_uri(), $mtime); $pixbuf = $pixbuf->scale_simple($width, $height, 'bilinear'); } } return $pixbuf; } else { my $query = "SELECT format, description, data FROM media WHERE id=\"" . $id . "\""; my $sth = do_query($mediaDbh, $query, FALSE); my $row = $sth->fetchrow_hashref(); if (defined $row->{'format'}) { if ($row->{'format'} eq "bg") { my @xpm = ("1 1 1 1", " c " . $row->{'description'}, " "); $pixbuf = Gtk3::Gdk::Pixbuf->new_from_xpm_data(@xpm); } else { my $pixbuf_loader = Gtk3::Gdk::PixbufLoader->new(); eval { $pixbuf_loader->write($row->{'data'}); }; eval { $pixbuf_loader->close() }; if ($@) { my @xpm = ("1 1 1 1", " c " . $row->{'description'}, " "); $pixbuf = Gtk3::Gdk::Pixbuf->new_from_xpm_data(@xpm); } else { $pixbuf = $pixbuf_loader->get_pixbuf(); } } } else { return NULL; } if ($width == 0) { return $pixbuf; } else { return $pixbuf->scale_simple($width, $height, 'nearest'); } } } #*** #****f* lyricue/import_image # NAME # import_image # SYNOPSIS # import_image() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub import_image { import_media("img"); } #*** #****f* lyricue/import_background # NAME # import_background # SYNOPSIS # import_background() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub import_background { import_media("bg"); } #*** #****f* lyricue/import_media # NAME # import_media # SYNOPSIS # import_media($type) # FUNCTION # Import media # INPUTS # $type - # OUTPUT # SOURCE # sub import_media { my ($type) = @_; debug("Import media to db of type:" . $type); my $filexml = load_window('dialogFileChooser'); $filexml->get_object('buttonFileOK') ->signal_connect(clicked => \&select_category, $filexml); $filexml->get_object('dialogFileChooser')->{user_data} = $type; $filexml->get_object('dialogFileChooser')->set_select_multiple(TRUE); $filexml->get_object('dialogFileChooser')->show_all(); } #*** #****f* lyricue/select_category # NAME # select_category # SYNOPSIS # select_category($widget, $filexml) # FUNCTION # select category # INPUTS # $widget - # $filexml - # OUTPUT # SOURCE # sub select_category { my ($widget, $filexml) = @_; debug("select category"); my $hashnum = 0; my @filenames = $filexml->get_object('dialogFileChooser')->get_filenames; debug(@filenames); my $type = $filexml->get_object('dialogFileChooser')->{user_data}; close_dialog($filexml->get_object('dialogFileChooser')); my $choosexml = load_window('dialogSelectCategory'); my $query = "SELECT DISTINCT category FROM media WHERE type=\"" . $type . "\" ORDER BY category"; my $sth = do_query($mediaDbh, $query, FALSE); my @row; my $model = Gtk3::ListStore->new('Glib::String'); $choosexml->get_object('comboSelectCategory')->set_model($model); $choosexml->get_object('comboSelectCategory')->set_text_column(0); while (@row = $sth->fetchrow_array()) { $choosexml->get_object('comboSelectCategory')->append_text($row[0]); } my $confirm = $choosexml->get_object('dialogSelectCategory')->run; if ($confirm == 1) { if ($choosexml->get_object('comboSelectCategory')->get_active_text() eq "") { return; } debug("Importing media"); my $category = $choosexml->get_object('comboSelectCategory')->get_active_text(); my $filename = ""; foreach $filename (@filenames) { my $format = $filename; $format =~ s/^.*\.//g; my $description = $filename; $description =~ s/^.*\///g; $description =~ s/\..*?$//g; my $owner = getpwuid($<); debug("Category: $category\nFilename: $filename"); open(MEDIA, $filename); my $data = ""; while () { $data .= $_; } close MEDIA; debug("Length: " . length($data)); my $sth = $mediaDbh->prepare( q{INSERT INTO media(category, subcategory, type, format, insertedby, insertdate, description, data) VALUES (?,?,?,?,?,NOW(),?,?)} ); my $rv = $sth->execute($category, "", $type, $format, $owner, $description, $data); } } close_dialog($choosexml->get_object('dialogSelectCategory')); my $category = $widgets->{'image'}->get_object('optionImageCategory')->{user_data}; update_imagedir( $widgets->{'image'}->get_object('optionImageCategory')->{'user_data'}, $category); } #*** #****f* lyricue/update_category # NAME # update_category # SYNOPSIS # update_category($selection, $choosexml) # FUNCTION # Selected a category # INPUTS # $selection - # $choosexml - # OUTPUT # SOURCE # sub update_category { my ($selection, $choosexml) = @_; debug("Selected a category"); my ($model, $iter) = $selection->get_selected; if ($iter) { $choosexml->get_object('entryChoosePlay') ->set_text($model->get($iter, 0)); } } #*** #****f* lyricue/update_quickedit # NAME # update_quickedit # SYNOPSIS # update_quickedit() # FUNCTION # Updating Quick edit # INPUTS # OUTPUT # SOURCE # sub update_quickedit { debug("Updating Quick edit"); my $selection = $widgets->{'main'}->get_object('treePlaylist')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { my $quicktext = ""; my $plnumber = $model->get($iter, 2); my $loop = 0; # Find the items lyrics for Quick Editing while ($loop == 0) { my $query = "SELECT type,data,playlist FROM playlist WHERE playorder=" . $plnumber; $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); if (defined($row[0])) { if (($row[0] eq "song") || ($row[0] eq "temp")) { $query = "SELECT lyrics FROM playlist as pl, page as pa WHERE pl.data=pa.pageid AND pl.playorder=" . $plnumber; $sth = do_query($lyricDbh, $query, FALSE); my @row2 = $sth->fetchrow_array(); if (!defined $row2[0]) { $row2[0] = ""; } $quicktext = $row2[0]; $loop = 1; $widgets->{'main'}->get_object('textQuick') ->set_wrap_mode('none'); $quicktext = $quicktext; } elsif ($row[0] eq "play") { $query = "SELECT playorder FROM playlist WHERE playlist=" . $row[1] . " ORDER BY playorder"; $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); $plnumber = $row[0]; $loop = 0; } elsif ($row[0] eq "vers") { my ($startv, $endv) = split(/-/, $row[1], 2); $query = "SELECT title FROM playlists WHERE id=" . $row[2]; $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); my @line = split(/:/, $row[0]); if ($globals->{'usesword'}) { my $command = sprintf( "%s -b %s -e UTF8 -k '%s' %d:%d-%d:%d |tr \\\\n \' \'", $globals->{'diatheke'}, $globals->{'bibledb'}, $line[0], $line[1], $startv, $line[1], $endv, $line[0] ); debug($command); my $command_out = fromutf(`$command`); ($line[0], undef) = split(/\s\d/, $command_out, 2); my @command_lines = split(/$line[0] /, $command_out); my $lineno = 0; foreach $lineno (1 .. @command_lines) { my $line2 = $command_lines[$lineno - 1]; chomp($line2); if ($line2 ne "") { if ($lineno != @command_lines) { $line2 .= "\n"; } $quicktext .= $line2; } } } else { my ($table, $dbname) = split(/@/, $globals->{'bibledb'}, 2); $query = "SELECT chapternum,versenum,verse FROM " . $table . " WHERE book LIKE \"" . $line[0] . "%\" AND chapternum=" . $line[1] . " AND versenum>=" . $startv . " AND versenum <= " . $endv; $sth = do_query($bibleDbh, $query, FALSE); while (@row = $sth->fetchrow_array()) { if ($quicktext ne "") { $quicktext .= "\n"; } $quicktext .= $row[0] . ":" . $row[1] . " " . $row[2]; } $quicktext = fromutf($quicktext); } $loop = 1; $widgets->{'main'}->get_object('textQuick') ->set_wrap_mode('word'); } elsif ($row[0] eq "imag") { $quicktext = "Image"; $loop = 1; } elsif ($row[0] eq "back") { $quicktext = "Background"; $loop = 1; } else { $loop = 1; } } else { $loop = 1; } } $widgets->{'main'}->get_object('textQuick') ->get_buffer->set_text($quicktext); $widgets->{'main'}->get_object('textQuick')->{user_data} = $model->get($iter, 2); $sth->finish; } } #*** #****f* lyricue/media_move # NAME # media_move # SYNOPSIS # media_move() # FUNCTION # Moving media # INPUTS # OUTPUT # SOURCE # sub media_move { debug("Moving media"); my $selection = $widgets->{'image'}->get_object('treeImage')->get_selection; my ($selecteditems, $model) = $selection->get_selected_rows(); my @id = (); my $type = $widgets->{'image'}->get_object('optionImageCategory')->{'user_data'}; if (@$selecteditems[0]) { foreach (@$selecteditems) { my $iter = $model->get_iter($_); push @id, $model->get($iter, 1); } } if (@id) { my $choosexml = load_window('windowChoosePlay'); $choosexml->get_object('windowChoosePlay') ->set_title(fromutf(gettext("Select Category"))); $choosexml->get_object('buttonLoad')->set_label("Select"); $choosexml->get_object('buttonDelete')->hide(); $choosexml->get_object('buttonRename')->hide(); $choosexml->get_object('buttonLoad') ->signal_connect(clicked => \&do_move_media, $choosexml); $choosexml->get_object('buttonNew') ->signal_connect(clicked => \&do_move_media, $choosexml); $choosexml->get_object('buttonCancel') ->signal_connect(clicked => \&close_dialog); $choosexml->get_object('windowChoosePlay')->show; $choosexml->get_object('treeChoosePlay')->{'user_data'} = $type; $choosexml->get_object('windowChoosePlay')->{'user_data'} = \@id; my $store = $choosexml->get_object('treeChoosePlay')->get_model(); if ($store) { $store->clear; } else { $store = Gtk3::ListStore->new('Glib::String'); $choosexml->get_object('treeChoosePlay')->set_model($store); my $renderer = Gtk3::CellRendererText->new; my $selection = $choosexml->get_object('treeChoosePlay')->get_selection; $selection->signal_connect( changed => \&update_category, $choosexml ); my $column = Gtk3::TreeViewColumn->new_with_attributes("Category", $renderer, text => 0); $choosexml->get_object('treeChoosePlay')->append_column($column); } my $query = "SELECT DISTINCT category FROM media WHERE type=\"" . $type . "\" ORDER BY category"; my $sth = do_query($mediaDbh, $query, FALSE); my @row; while (@row = $sth->fetchrow_array()) { my $iter = $store->append; $store->set($iter, 0, $row[0]); } } } #*** #****f* lyricue/do_move_media # NAME # do_move_media # SYNOPSIS # do_move_media($widget, $choosexml) # FUNCTION # Moving media # INPUTS # $widget - # $choosexml - # OUTPUT # SOURCE # sub do_move_media { my ($widget, $choosexml) = @_; debug("Moving media"); if ($choosexml->get_object('entryChoosePlay')->get_text() ne "") { my $type = $choosexml->get_object('treeChoosePlay')->{'user_data'}; my $category = $choosexml->get_object('entryChoosePlay')->get_text(); my $id = $choosexml->get_object('windowChoosePlay')->{'user_data'}; foreach (@$id) { my $query = "UPDATE media SET category=\"" . $category . "\" WHERE id=\"" . $_ . "\""; $sth = do_query($mediaDbh, $query, FALSE); } } close_dialog($widget); my $category = $widgets->{'image'}->get_object('optionImageCategory') ->get_menu->get_active->{user_data}; update_imagedir( $widgets->{'image'}->get_object('optionImageCategory')->{'user_data'}, $category); } #*** #****f* lyricue/media_delete # NAME # media_delete # SYNOPSIS # media_delete() # FUNCTION # Deleting media # INPUTS # OUTPUT # SOURCE # sub media_delete { debug("Deleting media"); my $selection = $widgets->{'image'}->get_object('treeImage')->get_selection; my ($selecteditems, $model) = $selection->get_selected_rows(); my @id = (); if (@$selecteditems[0]) { my $title = ""; foreach (@$selecteditems) { my $iter = $model->get_iter($_); push @id, $model->get($iter, 1); $title .= "\"" . $model->get($iter, 0) . "\", "; } if ($title ne "") { $title =~ s/, $//; debug("Deleting $title"); my $labelText = fromutf(gettext("Are you sure you wish to delete ")) . $title . "\n"; my $deletexml = load_window('dialogConfirm'); $deletexml->get_object('labelDelete')->set_text($labelText); $deletexml->get_object('dialogConfirm') ->set_title(fromutf(gettext("Confirm Delete Image"))); my $confirm = $deletexml->get_object('dialogConfirm')->run(); if ($confirm eq "ok") { foreach (@id) { $_ =~ s/^db;//g; my $query = "DELETE FROM media WHERE id=" . $_; my $sth = do_query($mediaDbh, $query, FALSE); close_dialog($deletexml->get_object('dialogConfirm')); my $category = $widgets->{'image'}->get_object('optionImageCategory') ->get_menu->get_active->{user_data}; update_imagedir( $widgets->{'image'}->get_object('optionImageCategory') ->{'user_data'}, $category ); } } } } } #*** #****f* lyricue/rename_media # NAME # rename_media # SYNOPSIS # rename_media($widget, $id, $newname) # FUNCTION # rename media # INPUTS # $widget - # $id - # $newname - # OUTPUT # SOURCE # sub rename_media { my ($widget, $id, $newname) = @_; debug("rename media"); my $oldname = $widget->get('text'); if ($oldname ne $newname) { my $iter = $widgets->{'image'}->get_object('treeImage') ->get_model->get_iter_from_string($id); $id = $widgets->{'image'}->get_object('treeImage') ->get_model->get($iter, 1); debug("Renaming media from $oldname to $newname"); my $query = "UPDATE media SET description=\"$newname\" WHERE id=$id"; my $sth = do_query($mediaDbh, $query, FALSE); update_imagedir( $widgets->{'image'}->get_object('optionImageCategory') ->{'user_data'}, $widgets->{'image'}->get_object('optionImageCategory') ->get_menu->get_active->{user_data} ); } } #*** #****f* lyricue/change_colour_media # NAME # change_colour_media # SYNOPSIS # change_colour_media($widget) # FUNCTION # change colour media # INPUTS # $widget - # OUTPUT # SOURCE # sub change_colour_media { my ($widget) = @_; debug("change colour media"); my $fontcolour = $widgets->{'image'}->get_object('entryImageFontColour')->get('text'); my $shadowcolour = $widgets->{'image'}->get_object('entryImageShadowColour')->get('text'); my $id = $widgets->{'image'}->get_object('imageImage')->{user_data}; if (defined($id)) { my ($type, $id) = split /;/, $id; if (!defined $id) { $id = $type; $type = "db"; } $id = substr $id, -100; if ($type eq "db") { debug("change_colour_media: $fontcolour, $shadowcolour, $id"); if (!($fontcolour =~ /^#/)) { $fontcolour = ""; } if (!($shadowcolour =~ /^#/)) { $shadowcolour = ""; } my $query = "UPDATE media SET textcolour=\"$fontcolour\", shadowcolour=\"$shadowcolour\" WHERE id=$id"; my $sth = do_query($mediaDbh, $query, FALSE); } elsif ($type eq "dir") { debug("change_colour_media: $fontcolour, $shadowcolour, $id"); my $query = "DELETE FROM media WHERE format=\"file\" AND category=\"" . $id . "\""; my $sth = do_query($mediaDbh, $query, FALSE); $query = "INSERT INTO media (format, category, textcolour, shadowcolour) VALUES (\"file\", \"$id\", \"$fontcolour\", \"$shadowcolour\")"; $sth = do_query($mediaDbh, $query, FALSE); } } change_preview(); } #*** #****f* lyricue/restore_db # NAME # restore_db # SYNOPSIS # restore_db() # FUNCTION # Restoring DB # INPUTS # OUTPUT # SOURCE # sub restore_db { debug("Restoring DB"); # Get filename of DB my $fileDialog = load_window('dialogFileChooser'); $fileDialog->get_object('dialogFileChooser') ->set_title(fromutf(gettext("Select Database Backup file"))); my $response = $fileDialog->get_object('dialogFileChooser')->run(); if ($response) { my $filename = $fileDialog->get_object('dialogFileChooser')->get_filename; close_dialog($fileDialog->get_object('dialogFileChooser')); my $confirmDialog = load_window('dialogConfirm'); $confirmDialog->get_object('dialogConfirm') ->set_title(fromutf(gettext("Confirm Restore Database"))); $confirmDialog->get_object('labelDelete')->set_text( fromutf( gettext( "WARNING: Restoring this database will overwrite your current database" ) ) ); my $confirm = $confirmDialog->get_object('dialogConfirm')->run(); if ($confirm eq "ok") { debug("ok"); open(INPUT, "gzip -dc " . $filename . "|"); my $table = ""; my $db = ""; my $dbh = ""; while () { chomp; if (/^USE/) { $db = $_; $db =~ s/^USE (.*);.*$/$1/g; $db =~ s/\`//g; debug($db . " - database"); if ($db eq "lyricDb") { $dbh = $lyricDbh; } elsif ($db eq "mediaDb") { $dbh = $mediaDbh; } else { $dbh = ""; } } elsif (/^INSERT INTO/) { if ($dbh ne "") { my $insert = $_; my $tmptable = $insert; $tmptable =~ s/^INSERT INTO `(.*?)`.*$/$1/g; if ($tmptable ne $table) { $table = $tmptable; my $query = "DELETE FROM " . $table; my $sth = do_query($dbh, $query, TRUE); } my $sth = do_query($dbh, $insert, TRUE); } } } } close_dialog($confirmDialog->get_object('dialogConfirm')); } else { close_dialog($fileDialog->get_object('dialogFileChooser')); } } #*** #****f* lyricue/import_songs # NAME # import_songs # SYNOPSIS # import_songs($filename) # FUNCTION # Import the songs from a single xml file # INPUTS # $filename - file to import songs from # OUTPUT # SOURCE # sub import_songs { my ($filename) = @_; debug("Importing songs from xml file"); my ($fh); if ($filename =~ /[zZ]$/) { open $fh, "gzip -dc \"" . $filename . "\" |"; } else { open $fh, $filename; } my $xml = XMLin( $fh, ForceArray => ['song', 'page'], SuppressEmpty => '', NoAttr => 1, KeyAttr => [] ); close $fh; my $songs = $xml->{'song'}; $widgets->{'select_songs'} = load_window('dialogSelectSongs'); my $model = Gtk3::ListStore->new( 'Glib::Boolean', 'Glib::String', 'Glib::String', 'Glib::String', 'Glib::Uint', 'Glib::Uint' ); my $renderer = Gtk3::CellRendererToggle->new; $renderer->signal_connect( toggled => sub { my ($cell, $path_str, $model) = @_; my $path = Gtk3::TreePath->new_from_string($path_str); my $column = 0; my $iter = $model->get_iter($path); my ($toggle_item) = $model->get($iter, $column); $toggle_item ^= 1; debug 'setting ' . $path_str . ' to ' . $toggle_item; # set new value $model->set($iter, $column, $toggle_item); }, $model ); my $column1 = Gtk3::TreeViewColumn->new_with_attributes("", $renderer, active => 0); my $column2 = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Title")), Gtk3::CellRendererText->new, text => 1 ); my $column3 = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Artist")), Gtk3::CellRendererText->new, text => 2 ); my $column4 = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Book")), Gtk3::CellRendererText->new, text => 3 ); my $column5 = Gtk3::TreeViewColumn->new_with_attributes( fromutf(gettext("Song Number")), Gtk3::CellRendererText->new, text => 4 ); $column1->set_resizable(TRUE); $column2->set_resizable(TRUE); $column3->set_resizable(TRUE); $column4->set_resizable(TRUE); $column5->set_resizable(TRUE); $widgets->{'select_songs'}->get_object('treeSongImport') ->append_column($column1); $widgets->{'select_songs'}->get_object('treeSongImport') ->append_column($column2); $widgets->{'select_songs'}->get_object('treeSongImport') ->append_column($column3); $widgets->{'select_songs'}->get_object('treeSongImport') ->append_column($column4); $widgets->{'select_songs'}->get_object('treeSongImport') ->append_column($column5); my @sorted_songs = sort { $a->{'name'} cmp $b->{'name'} } @$songs; foreach my $songnum (0 .. (@sorted_songs - 1)) { debug("Adding " . $songnum . ":" . $sorted_songs[$songnum]->{'name'}); my $iter = $model->append; $model->set( $iter, 0, TRUE, 1, $sorted_songs[$songnum]->{'name'}, 2, $sorted_songs[$songnum]->{'artist'}, 3, $sorted_songs[$songnum]->{'book'}, 4, $sorted_songs[$songnum]->{'number'}, 5, $songnum ); } $widgets->{'select_songs'}->get_object('treeSongImport')->set_model($model); $widgets->{'select_songs'}->get_object('treeSongImport') ->set_headers_clickable(TRUE); my $confirm = $widgets->{'select_songs'}->get_object('dialogSelectSongs')->run(); if ($confirm == 1) { $model->foreach(\&do_import_songs, $songs); update_available(); } close_dialog($widgets->{'select_songs'}->get_object('dialogSelectSongs')); } #*** #****f* lyricue/import_selection # NAME # import_selection # SYNOPSIS # import_selection($filename) # FUNCTION # Change the selection in the import dialog # OUTPUT sub import_selection { my ($widget) = @_; debug("Selection changing"); my $model = $widgets->{'select_songs'}->get_object('treeSongImport')->get_model; my $toggle = FALSE; if ($widget eq $widgets->{'select_songs'}->get_object('buttonImportAll')) { $toggle = TRUE; } $model->foreach( sub { my ($store, $path, $iter, $toggle) = @_; $store->set($iter, 0, $toggle); }, $toggle ); } #*** #****f* lyricue/do_import_songs # NAME # do_import_songs # SYNOPSIS # do_import_songs($store, $path, $iter, $songs) # FUNCTION # Import each individual song if marked for import # INPUTS # $store - List store # $path - Path of item being checked # $iter - Iter of item # $songs - Parsed xml input # OUTPUT sub do_import_songs { my ($store, $path, $iter, $songs) = @_; my $songnum = $store->get($iter, 5); if ($store->get($iter, 0)) { my $song = @$songs[$songnum]; debug("Importing " . $song->{'name'}); # Find next id my $query = "SELECT MAX(id)+1 FROM lyricMain WHERE id < 2000000"; my $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array; my $songid = $row[0]; if ((!defined $songid) || ($songid < 1)) { $songid = 1; } $query = "INSERT INTO lyricMain ( id, title, songnum, book, artist, keywords, copyright, entered, written ) VALUES ( ?, ?, ?, ?, ?, ?, ?, NOW(), NOW())"; $sth = $lyricDbh->prepare($query); my $rv = $sth->execute($songid, $song->{'name'}, $song->{'number'}, $song->{'book'}, $song->{'artist'}, $song->{'keywords'}, $song->{'copyright'}) || database_failure($errorcodes->{'sqlexecute'}, $! . "\nSQL: " . $query); my $pages = $song->{'page'}; my $pagenum = 0; foreach (@$pages) { $pagenum++; debug("Page Add : " . $pagenum); $query = "INSERT INTO page (songid,pagenum,lyrics) VALUES (" . $songid . ", " . $pagenum . ", " . quote($_) . ")"; $sth = do_query($lyricDbh, $query, FALSE); } } } #*** #****f* lyricue/export_songs # NAME # export_songs # SYNOPSIS # export_songs($filename) # FUNCTION # Export the songs into a single xml file # INPUTS # $filename - file to save songs as # OUTPUT # SOURCE # sub export_songs { my ($filename) = @_; my @songs = (); my $query = "SELECT * FROM lyricMain"; my $sth = do_query($lyricDbh, $query, FALSE); while (my $row = $sth->fetchrow_hashref()) { my $query2 = "SELECT lyrics FROM page WHERE songid=" . $row->{'id'} . " ORDER BY pagenum"; my $sth2 = do_query($lyricDbh, $query2, TRUE); my @pages = (); while (my $row2 = $sth2->fetchrow_hashref()) { push @pages, $row2->{'lyrics'}; } my $song = { 'name' => [$row->{'title'}], 'number' => [$row->{'songnum'}], 'book' => [$row->{'book'}], 'artist' => [$row->{'artist'}], 'keywords' => [$row->{'keywords'}], 'copyright' => [$row->{'copyright'}], 'page' => \@pages }; push @songs, $song; } my $out = {'song' => \@songs}; my $writer = XML::Simple->new(); open my $fh, "| gzip -c - > \"" . $filename . "\""; binmode($fh, ":utf8"); $writer->XMLout($out, OutputFile => $fh, RootName => 'lyricue'); close $fh; } #*** #****f* lyricue/backup_db # NAME # backup_db # SYNOPSIS # backup_db() # FUNCTION # Backup DB selected # INPUTS # OUTPUT # SOURCE # sub backup_db { debug("Backup DB selected"); $widgets->{'backupdb'} = load_window('dialogDatabase'); $widgets->{'backupdb'}->get_object('entryPrefDBFilename') ->set_text($ENV{"HOME"} . "/Lyricue_DB.gz"); my $response = $widgets->{'backupdb'}->get_object('dialogDatabase')->run(); if ($response eq "ok") { my $filename = $widgets->{'backupdb'}->get_object('entryPrefDBFilename')->get_text(); if (!($filename =~ /\.gz$/)) { $filename .= ".gz"; } my $databases = ""; if ($widgets->{'backupdb'}->get_object('checkLyricdb')->get_active()) { $databases .= "lyricDb "; } if ($widgets->{'backupdb'}->get_object('checkMediadb')->get_active()) { $databases .= "mediaDb "; } my $command = "mysqldump --skip-extended-insert --no-create-db --no-create-info --complete-insert --user=lyric --password='' --databases " . $databases . " | gzip -c > " . $filename; debug($command); system $command; if ($? == -1) { debug("Failed to execute: " . $command); } else { debug("Backed up to " . $filename); } } close_dialog($widgets->{'backupdb'}->get_object('dialogDatabase')); } #*** #****f* lyricue/backup_db_browse # NAME # backup_db_browse # SYNOPSIS # backup_db_browse() # FUNCTION # Browsing for BackupDB filename # INPUTS # OUTPUT # SOURCE # sub backup_db_browse { debug("Browsing for BackupDB filename"); my $fileDialog = load_window('dialogFileChooser'); $fileDialog->get_object('dialogFileChooser') ->set_filename( $widgets->{'backupdb'}->get_object('entryPrefDBFilename')->get_text()); my $response = $fileDialog->get_object('dialogFileChooser')->run(); if ($response) { my $filename = $fileDialog->get_object('dialogFileChooser')->get_filename; if (!($filename =~ /\.gz$/)) { $filename .= ".gz"; } $widgets->{'backupdb'}->get_object('entryPrefDBFilename') ->set_text($filename); } close_dialog($fileDialog->get_object('dialogFileChooser')); } #*** #****f* lyricue/get_bibles # NAME # get_bibles # SYNOPSIS # get_bibles() # FUNCTION # Getting available bibles # INPUTS # OUTPUT # SOURCE # sub get_bibles { my $bibles; debug("Getting available bibles"); if ($^O ne 'MSWin32') { # Bibles provided by Sword libraries open(SWORD, $globals->{'diatheke'} . " -b system -k modulelist|"); while () { if (/^Biblical Texts:/) { while () { if (/^Commentaries:/) { while () { } } else { chomp; my @bible = split(/:/, $_, 2); $bible[0] =~ s/\s+$//; $bible[1] =~ s/^\s+//; $bibles->{$bible[0]} = "sword;" . $bible[1]; } } } } close SWORD; } # Bible databases found my $dbs = $globals->{'db_available_db'}; foreach (keys %$dbs) { my $dbname = $_; my $db = db_connect($dbname, $errorcodes->{'bibledbopen'}, FALSE); if (defined $db) { my @tables = $db->tables; my $table; foreach (@tables) { my $tablename = $_; $tablename =~ s/^.*`(.*)`$/$1/g; $tablename =~ s/^"(.*)"$/$1/g; my $tmpfields = $db->selectall_arrayref("describe " . $tablename); if (!defined $tmpfields) { last; } my @fields = @{$tmpfields}; my $a = $fields[0]->[0]; if ($a eq "verseid") { my $query = "SELECT verse FROM " . $tablename . " WHERE book=\"Bible\";"; my $sth = do_query($db, $query, FALSE); my $row = $sth->fetchrow_hashref(); if (defined $row->{'verse'}) { $bibles->{$tablename . "@" . $dbname} = "db;" . $row->{'verse'}; } $sth->finish; } } $db->disconnect(); } } return $bibles; } #*** #****f* lyricue/navigator_changed # NAME # navigator_changed # SYNOPSIS # navigator_changed() # FUNCTION # Navigator changed # INPUTS # OUTPUT # SOURCE # sub navigator_changed { debug("Navigator changed"); reset_timer($globals->{'nav_update_timer'}); $globals->{'nav_update_timer'} = Glib::Timeout->add(500, \&navigator_timeout); } #*** #****f* lyricue/navigator_update # NAME # navigator_update # SYNOPSIS # navigator_update() # FUNCTION # Updating navigator # INPUTS # OUTPUT # SOURCE # sub navigator_timeout { $globals->{'nav_update_timer'}=NULL; navigator_update(); } sub navigator_update { debug("Updating navigator"); reset_timer($globals->{'nav_update_timer'}); if ((!defined $globals->{'bibledb'}) || ($globals->{'bibledb'} eq "")) { display_message($errorcodes->{'nobible'}); return; } my $buffer = Gtk3::TextBuffer->new(); $buffer->set_text(""); my $iter = $buffer->get_iter_at_offset(0); my $verse = $widgets->{'main'}->get_object('entryNavVerse')->get_active_text(); $verse =~ s/ (\D)/_$1/g; my ($book, $chapter, $startverse, $endverse) = split(/[ :\-,]/, $verse, 4); my $browser = ""; if (defined $book) { $book =~ s/_/ /g; } else { $book = ""; $browser = "init"; biblebrowser_init(); } if ((!defined $chapter) or ($chapter eq "") or ($chapter =~ /\D/)) { $chapter = 1; if ($browser eq "") { $browser = "chapter"; biblebrowser_chapter(NULL, $book, "entry"); } } if ( (!defined $startverse) or ($startverse eq "") or ($startverse =~ /\D/)) { $startverse = 1; } if ( (!defined $endverse) or ($endverse eq "") or ($endverse =~ /\D/) or ($endverse < $startverse)) { $endverse = $startverse; } debug( "Book " . $book . " chapter " . $chapter . " verses " . $startverse . "-" . $endverse); if ($browser eq "") { $browser = "verse"; my $newbook = ""; if (!$globals->{'usesword'}) { my ($table, $dbname) = split(/@/, $globals->{'bibledb'}, 2); my $query = "SELECT DISTINCT(book) FROM " . $table . " WHERE book LIKE \"" . $book . "%\""; my $sth = do_query($bibleDbh, $query, FALSE); my @bookrow = $sth->fetchrow_array(); if ((defined $bookrow[0]) && ($book ne "")) { $newbook = $bookrow[0]; } } else { my $command = sprintf( "%s -b %s -e UTF8 -k '%s' 1:1 | head -1", $globals->{'diatheke'}, $globals->{'bibledb'}, $book ); my $command_out = fromutf(`$command`); ($newbook, undef) = split(/\s\d/, $command_out, 2); } my $text = $widgets->{'main'}->get_object('entryNavVerse')->get_active_text(); $text =~ s/$book[ :\-]/$newbook /i; $widgets->{'main'}->get_object('entryNavVerse')->get_child->set_text($text); $widgets->{'main'}->get_object('entryNavVerse')->get_child->set_position(-1); #biblebrowser_verse(NULL, 0, "entry"); $globals->{'ignore_signals'} = TRUE; foreach my $num ($startverse .. $endverse) { my $button = "button" . ($num - 1); if (defined $widgets->{'bibleBrowser'}{$button}) { $widgets->{'bibleBrowser'}{$button}->set_active(TRUE); } } $globals->{'ignore_signals'} = FALSE; } if ($globals->{'usesword'}) { my $command = sprintf( "%s -b %s -e UTF8 -k '%s' %d:%d-%d |tr \\\\n \' \'", $globals->{'diatheke'}, $globals->{'bibledb'}, $book, $chapter, $startverse, $endverse, $book ); my $command_out = fromutf(`$command`); ($book, undef) = split(/\s\d/, $command_out, 2); my @command_lines = split(/$book /, $command_out); my $mark = 0; my $lineno = 0; foreach $lineno (1 .. @command_lines) { my $line2 = $command_lines[$lineno - 1]; chomp($line2); if ($line2 ne "") { if ($lineno != @command_lines) { $line2 .= "\n"; } $buffer->create_mark($mark, $iter, TRUE); insert_link($buffer, $iter, $mark, $line2); $mark++; } } $buffer->create_mark($mark, $iter, TRUE); # remove the trailing bible name #$quicktext =~ s/\($globals->{'bibledb'}\)/\n/g; } else { my ($table, $dbname) = split(/@/, $globals->{'bibledb'}, 2); $query = "SELECT book FROM " . $table . " WHERE book LIKE \"" . $book . "%\""; $sth = do_query($bibleDbh, $query, FALSE); my @bookrow = $sth->fetchrow_array(); if ((defined $bookrow[0]) && ($book ne "")) { $book = $bookrow[0]; my ($table, $dbname) = split(/@/, $globals->{'bibledb'}, 2); $query = "SELECT book,chapternum,versenum,verse FROM " . $table . " WHERE book LIKE \"" . $book . "%\" AND chapternum=" . $chapter . " AND versenum>=" . $startverse . " AND versenum <= " . $endverse . " ORDER BY versenum"; $sth = do_query($bibleDbh, $query, FALSE); my $mark = 0; while (my @row = $sth->fetchrow_array()) { my $verse = $row[1] . ":" . $row[2] . " " . $row[3]; if ($buffer->get_char_count()>0) { $verse .= "\n"; } $buffer->create_mark($mark, $iter, TRUE); insert_link($buffer, $iter, $mark, $verse); $mark++; } $buffer->create_mark($mark, $iter, TRUE); } } $widgets->{'main'}->get_object('entryNavVerse')->{user_data} = $book . " " . $chapter . ":" . $startverse . "-" . $endverse; my $oldtext = get_buffer_text( $widgets->{'main'}->get_object('textNavView')->get_buffer()); my $quicktext = get_buffer_text($buffer); if ($oldtext ne $quicktext) { $widgets->{'main'}->get_object('textNavView')->set_buffer($buffer); if ($widgets->{'main'}->get_object('checkNavAuto')->get_active()) { navigator_show(); } } } #*** #****f* lyricue/navigator_enter # NAME # navigator_enter # SYNOPSIS # navigator_enter() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub navigator_enter { navigator_update(); navigator_show(); } #*** #****f* lyricue/navigator_show # NAME # navigator_show # SYNOPSIS # navigator_show() # FUNCTION # Bible navigator showing on server # INPUTS # OUTPUT # SOURCE # sub navigator_show { debug("Bible navigator showing on server"); my $buffer = $widgets->{'main'}->get_object('textNavView')->get_buffer(); my $songtext = $buffer->get_text($buffer->get_bounds, FALSE); $songtext =~ s/\n/#BREAK#/g; $songtext =~ s/:/#SEMI#/g; my $verse = $widgets->{'main'}->get_object('entryNavVerse')->{user_data} . "#BREAK##BREAK##BREAK#wrap"; update_display("preview", $verse, $songtext); } #*** #****f* lyricue/navigator_add # NAME # navigator_add # SYNOPSIS # navigator_add() # FUNCTION # Adding verses from Bible navigator to playlist # INPUTS # OUTPUT # SOURCE # sub navigator_add { debug("Adding verses from Bible navigator to playlist"); my $verse = $widgets->{'main'}->get_object('entryNavVerse')->{user_data}; $verse =~ s/ (\D)/_$1/; my ($book, $chapter, $startverse, $endverse) = split(/[ :\-,]/, $verse, 4); $book =~ s/_/ /g; insert_verse($book, $chapter, $startverse, $endverse); } #*** #****f* lyricue/navigator_next # NAME # navigator_next # SYNOPSIS # navigator_next() # FUNCTION # Showing next verse # INPUTS # OUTPUT # SOURCE # sub navigator_next { debug("Showing next verse"); my $verse = $widgets->{'main'}->get_object('entryNavVerse')->{user_data}; $verse =~ s/ (\D)/_$1/; my ($book, $chapter, $startverse, $endverse) = split(/[ :\-,]/, $verse, 4); $book =~ s/_/ /g; my $loop = TRUE; $endverse++; while ($loop) { my $maxv = get_max_verse($book, $chapter, $startverse, $endverse); if ($maxv < $endverse) { $startverse++; } else { $loop = FALSE; } } if (!$globals->{'usesword'}) { my ($table, $dbname) = split(/@/, $globals->{'bibledb'}, 2); my $query = "SELECT MAX(versenum) FROM " . $table . " WHERE book LIKE \"" . $book . "%\" AND chapternum=" . $chapter; my $sth = do_query($bibleDbh, $query, FALSE); my @row = $sth->fetchrow_array(); if ($endverse > $row[0]) { $endverse = $row[0]; } if ($startverse > $row[0]) { $startverse = $row[0]; } } $verse = $book . " " . $chapter . ":" . $startverse . "-" . $endverse; $widgets->{'main'}->get_object('entryNavVerse')->get_child->set_text($verse); navigator_update(); navigator_show(); } #*** #****f* lyricue/navigator_prev # NAME # navigator_prev # SYNOPSIS # navigator_prev() # FUNCTION # Showing next verse # INPUTS # OUTPUT # SOURCE # sub navigator_prev { debug("Showing previous verse"); my $verse = $widgets->{'main'}->get_object('entryNavVerse')->{user_data}; $verse =~ s/ (\D)/_$1/; my ($book, $chapter, $startverse, $endverse) = split(/[ :\-,]/, $verse, 4); $book =~ s/_/ /g; my $loop = TRUE; $startverse--; if ($startverse < 1) { $startverse = 1; } $endverse = get_max_verse($book, $chapter, $startverse, $endverse); $verse = $book . " " . $chapter . ":" . $startverse . "-" . $endverse; $widgets->{'main'}->get_object('entryNavVerse')->get_child->($verse); navigator_update(); navigator_show(); } #*** #****f* lyricue/reset_timer # NAME # reset_timer # SYNOPSIS # reset_timer($timer) # FUNCTION # Cancelling timer # INPUTS # $timer - # OUTPUT # SOURCE # sub reset_timer { my ($timer) = @_; if ($timer) { debug("Cancelling timer"); Glib::Source->remove($timer); $timer = FALSE; } } #*** #****f* lyricue/do_pending # NAME # do_pending # SYNOPSIS # do_pending() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub do_pending { while (Gtk3::events_pending) { Gtk3::main_iteration; } } #*** #****f* lyricue/get_max_verse # NAME # get_max_verse # SYNOPSIS # get_max_verse($book, $chapter, $startverse, $endverse) # FUNCTION # # INPUTS # $book - # $chapter - # $startverse - # $endverse - # OUTPUT # SOURCE # sub get_max_verse { my ($book, $chapter, $startverse, $endverse) = @_; if ($config->{'Main'} eq "") { $config = load_config($globals->{'profile'}); } if ($config->{'Width'} == 0) { $config->{'Width'} = 800; $config->{'Height'} = 600; } debug( "Get max verse that fits within " . $config->{'Width'} . "x" . $config->{'Height'}); my $pageHeight = 0; my $layout = $widgets->{'main'}->get_object('windowMain')->create_pango_layout(""); $layout->set_wrap('word'); $layout->set_width(($config->{'Width'} - $config->{'OverscanH'}) * 1024); my $page = ""; my (@command_out); if (!$globals->{'usesword'}) { my ($table, $dbname) = split(/@/, $globals->{'bibledb'}, 2); $query = "SELECT * FROM " . $table . " WHERE book LIKE \"" . $book . "%\" AND chapternum=" . $chapter . " AND versenum>=" . $startverse . " AND versenum <= " . $endverse . " ORDER BY versenum"; $sth = do_query($bibleDbh, $query, FALSE); } my $loop = TRUE; my $versenum = $startverse; while ($loop) { my $line = ""; if ($globals->{'usesword'}) { my $command = sprintf( "%s -b %s -e UTF8 -k '%s' %d:%d-%d | sed -e 's/^%s //g' | head -n -1", $globals->{'diatheke'}, $globals->{'bibledb'}, $book, $chapter, $startverse, $versenum, $book ); $line = `$command`; $versenum++; if ($versenum > $endverse - 1) { $loop = FALSE; } chomp($line); } else { if (!defined $line) { $loop = FALSE; } if ($row = $sth->fetchrow_hashref()) { $line = $row->{'chapternum'} . ":" . $row->{'versenum'} . " " . $row->{'verse'}; $versenum = $row->{'versenum'}; } else { return $versenum; } } $layout->set_markup("{'Main'}."\">".$page . "\n" . $line."",-1); my ($pageWidth, $pageHeight) = $layout->get_pixel_size; if ($pageHeight > $config->{'Height'} - (100 + $config->{'OverscanV'})) { if ($versenum > $startverse) { $versenum--; } return $versenum; } else { $page = $page . "\n" . $line; } } if ($versenum > $endverse) { $versenum = $endverse; } return $versenum; } # Inserts a piece of text into the buffer, giving it the usual # appearance of a hyperlink in a web browser: blue and underlined. # Additionally, attaches some data on the tag, to make it recognizable # as a link. # #*** #****f* lyricue/insert_link # NAME # insert_link # SYNOPSIS # insert_link($buffer, $iter, $mark, $verse) # FUNCTION # # INPUTS # $buffer - # $iter - # $mark - # $verse - # OUTPUT # SOURCE # sub insert_link { my ($buffer, $iter, $mark, $verse) = @_; my $tag = $buffer->create_tag( undef, foreground => "blue", underline => 'single' ); $tag->{markname} = $mark; $buffer->create_mark($mark, $iter, TRUE); my ($chap, $num, $text) = split(/[:\ ]/, $verse, 3); $verse = $chap . ":" . $num; $text = " " . $text; $buffer->insert_with_tags($iter, $verse, $tag); $buffer->insert($iter, $text); } # Looks at all tags covering the position of iter in the text view, # and if one of them is a link, follow it by showing the page identified # by the data attached to it. # #*** #****f* lyricue/follow_if_link # NAME # follow_if_link # SYNOPSIS # follow_if_link($text_view, $iter) # FUNCTION # Showing $book $verse # INPUTS # $text_view - # $iter - # OUTPUT # SOURCE # sub follow_if_link { my ($text_view, $iter) = @_; my $verse = $widgets->{'main'}->get_object('entryNavVerse')->{user_data}; $verse =~ s/ (\D)/_$1/; my ($book, $chapter, $startverse, $endverse) = split(/[ :\-,]/, $verse, 4); $book =~ s/_/ /g; foreach my $tag ($iter->get_tags) { my $buffer = $text_view->get_buffer(); my $mark = $buffer->get_mark($tag->{markname}); my $startiter = $buffer->get_iter_at_mark($mark); my $enditer = $buffer->get_iter_at_mark($buffer->get_mark($tag->{markname} + 1)); my $quicktext = $buffer->get_text($startiter, $enditer, FALSE); if ($verse ne "") { debug("Showing $book $verse"); debug($quicktext); last; } } } #*** #****f* lyricue/navigator_event_after # NAME # navigator_event_after # SYNOPSIS # navigator_event_after($text_view, $event) # FUNCTION # Navigator text clicked # INPUTS # $text_view - # $event - # OUTPUT # SOURCE # sub navigator_event_after { my ($text_view, $event) = @_; debug("Navigator text clicked"); return FALSE unless $event->type eq 'button-release'; return FALSE unless $event->button == 1; my $buffer = $text_view->get_buffer; # we shouldn't follow a link if the user has selected something my ($start, $end) = $buffer->get_selection_bounds; return FALSE if defined $end and $start->get_offset != $end->get_offset; my ($x, $y) = $text_view->window_to_buffer_coords('widget', $event->x, $event->y); my $iter = $text_view->get_iter_at_location($x, $y); follow_if_link($text_view, $iter); return FALSE; } #*** #****f* lyricue/text_set_cursor_if_appropriate # NAME # text_set_cursor_if_appropriate # SYNOPSIS # text_set_cursor_if_appropriate($text_view, $x, $y) # FUNCTION # # INPUTS # $text_view - # $x - # $y - # OUTPUT # SOURCE # sub text_set_cursor_if_appropriate { my ($text_view, $x, $y) = @_; $globals->{'hovering'} = FALSE; my $buffer = $text_view->get_buffer; my $iter = $text_view->get_iter_at_location($x, $y); foreach my $tag ($iter->get_tags) { if (defined $tag->{markname}) { $globals->{'hovering'} = TRUE; last; } } if ($globals->{'hovering'} != $globals->{'hovering_over_link'}) { $globals->{'hovering_over_link'} = $globals->{'hovering'}; $text_view->get_window('text')->set_cursor( $globals->{'hovering_over_link'} ? $globals->{'hand_cursor'} : $globals->{'text_cursor'} ); } } # Update the cursor image if the pointer moved. # #*** # Also update the cursor image if the window becomes visible # (e.g. when a window covering it got iconified). # #*** #****f* lyricue/import_song_from_file # NAME # import_song_from_file # SYNOPSIS # import_song_from_file($filename) # FUNCTION # # INPUTS # $filename - # OUTPUT # SOURCE # sub import_song_from_file { my ($filename) = @_; import_songs($filename); } #*** #****f* lyricue/import_song_songselect # NAME # import_song_songselect # SYNOPSIS # import_song_songselect($filename) # FUNCTION # import songselect song # INPUTS # $filename - # OUTPUT # SOURCE # sub import_song_songselect { my ($filename) = @_; debug("import songselect song"); open(SONG, $filename) || return; binmode SONG, ":encoding(utf8)"; my $hashnum = 0; while () { $_ =~ s/ //g; chomp; my @line = split(/=/, $_, 2); $_ = $line[0]; if (/Title/) { $widgets->{'add'}->get_object('entryEditName')->set_text($line[1]); } elsif (/Author/) { $widgets->{'add'}->get_object('entryEditArtist') ->set_text($line[1]); } elsif (/Copyright/) { $widgets->{'add'}->get_object('entryEditCopyright') ->set_text($line[1]); } elsif (/Themes/) { $line[1] =~ s/\/t/ /g; $widgets->{'add'}->get_object('entryEditKeywords') ->set_text($line[1]); } elsif (/Words/) { my @words = split(/\/t/, $line[1]); foreach (@words) { if ($_ ne "") { $_ =~ s/\/n/\n/g; chomp; if ($hashnum == 0) { $widgets->{'textAPageB'}{$hashnum}->set_text($_); $hashnum++; } else { $hashnum = add_page(); $widgets->{'textAPageB'}{$hashnum}->set_text($_); } } } } } close SONG; } #*** #****f* lyricue/import_song_opw # NAME # import_song_opw # SYNOPSIS # import_song_opw($filename) # FUNCTION # import opw song # INPUTS # $filename - # OUTPUT # SOURCE # sub import_song_opw { my ($filename) = @_; debug("import opw song"); my $input = ""; my $hashnum = 0; open(OPW, $filename) || die("Unable to open $filename"); while () { $input .= fromutf("cp-1252", $_); } close OPW; $input =~ /bundel>(.*)<\/bundel/; $widgets->{'add'}->get_object('entryEditBook')->set_text($1); $input =~ /nummer>(.*)<\/nummer/; $widgets->{'add'}->get_object('entryEditNumber')->set_text($1); $input =~ /titel>(.*)<\/titel/; $widgets->{'add'}->get_object('entryEditName')->set_text($1); $input =~ /copyrights>(.*)<\/copyrights/; $widgets->{'add'}->get_object('entryEditCopyright')->set_text($1); $input =~ /beginregel>(.*)<\/beginregel/; $widgets->{'add'}->get_object('entryEditKeywords')->set_text($1); $input =~ /tekst>(.*)<\/tekst/s; my $lyrics = $1; $lyrics =~ s/ //g; my @lyrics = split(/\n \n/, $lyrics); foreach (@lyrics) { if ($_ ne "") { chomp; $_ =~ s/ *$//g; $_ =~ s/^[0-9]*\. //g; if ($hashnum == 0) { $widgets->{'textAPageB'}{$hashnum}->set_text($_); $hashnum++; } else { $hashnum = add_page(); $widgets->{'textAPageB'}{$hashnum}->set_text($_); } } } } #*** #****f* lyricue/import_song_html # NAME # import_song_html # SYNOPSIS # import_song_html($filename) # FUNCTION # import HTML/Opensong song # INPUTS # $filename - # OUTPUT # SOURCE # sub import_song_html { my ($filename) = @_; debug("import HTML/Opensong song"); my ($name, $author) = ""; my $input = ""; my $page = ""; my $hashnum = 0; open(HTML, $filename) || die("Unable to open $filename"); while () { chomp; if (/div id="title"/) { $name = $_; $name =~ s/^.*id=\"title\">(.*)<\/div>.*$/$1/g; $widgets->{'add'}->get_object('entryEditName')->set_text($name); } elsif (/div id="author"/) { $author = $_; $author =~ s/^.*id="author">(.*)<\/div>.*/$1/g; $widgets->{'add'}->get_object('entryEditArtist')->set_text($author); } elsif (/div class="heading"/) { # new page debug("add page"); if ($page ne "") { my $iter = $widgets->{'textAPageB'}{$hashnum}->get_end_iter(); $widgets->{'textAPageB'}{$hashnum}->insert($iter, $page); $page = ""; $hashnum = add_page(); } } elsif (/td class="lyrics"/) { my $line = $_; $line =~ s/^.*class="lyrics">(.*)<\/td>.*/$1/g; $line =~ s/ / /g; $page .= $line; } elsif (/<\/table>/) { debug("add line"); $page .= " "; } } close HTML; if ($page ne "") { my $iter = $widgets->{'textAPageB'}{$hashnum}->get_end_iter(); $widgets->{'textAPageB'}{$hashnum}->insert($iter, $page); $page = ""; } } #### # Install database functions #### #*** #****f* lyricue/db_check_app # NAME # db_check_app # SYNOPSIS # db_check_app() # FUNCTION # Checking for database servers # INPUTS # OUTPUT # SOURCE # sub db_check_app { debug("Checking for database servers"); my @ary = DBI->available_drivers(1); my $mysql = FALSE; foreach (@ary) { if ($_ eq "mysql") { $mysql = TRUE; } } if (!$mysql) { die("No supported DB found"); } } #*** #****f* lyricue/db_get_admin # NAME # db_get_admin # SYNOPSIS # db_get_admin() # FUNCTION # Get the db admin login information # INPUTS # OUTPUT # SOURCE # sub db_get_admin { debug("Get the db admin login information"); my $dbh; eval { $dbh = DBI->connect("DBI:mysql:mysql:" . $globals->{'mysqlhost'}, "root", ""); }; if ($dbh) { $globals->{'db_adminuser'} = "root"; $globals->{'db_adminpassword'} = ""; return; } my $adminxml = load_window('dialogAdminLogin'); my $confirm = $adminxml->get_object('dialogAdminLogin')->run(); if ($confirm == 0) { $globals->{'db_adminuser'} = $adminxml->get_object('entryAdminLogin')->get_text(); $globals->{'db_adminpassword'} = $adminxml->get_object('entryAdminPass')->get_text(); } else { my $confirmxml = load_window('dialogConfirm'); $confirmxml->get_object('labelDelete') ->set_text( fromutf(gettext("Are you sure you want to exit Lyricue?"))); $confirm = $confirmxml->get_object('dialogConfirm')->run(); close_dialog($adminxml->get_object('dialogAdminLogin')); if ($confirm eq "ok") { debug("Exiting on request"); exit 1; } else { db_get_admin(); return; } } close_dialog($adminxml->get_object('dialogAdminLogin')); eval { $dbh = DBI->connect( "DBI:mysql:mysql:" . $globals->{'mysqlhost'}, $globals->{'db_adminuser'}, $globals->{'db_adminpassword'} ); }; if (!$dbh) { debug("Password incorrect - retry"); db_get_admin(); } } #*** #****f* lyricue/db_install_user # NAME # db_install_user # SYNOPSIS # db_install_user() # FUNCTION # Install lyric database user # INPUTS # OUTPUT # SOURCE # sub db_install_user { debug("Install lyric database user"); my ($dbh); db_get_admin(); eval { $dbh = DBI->connect( "DBI:mysql:mysql:" . $globals->{'mysqlhost'}, $globals->{'db_adminuser'}, $globals->{'db_adminpassword'} ); }; if ($@) { my $labelText = fromutf( gettext( "Unable to login to database as admin, maybe the database is down.\nPlease re-enter your database admin login and retry" ) ); my $loginxml = load_window('dialogConfirm'); $loginxml->get_object('dialogConfirm') ->set_title(fromutf(gettext("Login Error"))); $loginxml->get_object('labelDelete')->set_text($labelText); my $confirm = $loginxml->get_object('dialogConfirm')->run(); if ($confirm eq "ok") { close_dialog($loginxml->get_object('dialogConfirm')); db_install_user(); return NULL; } else { display_fatal($errorcodes->{'lyricdbopen'}, $DBI::errstr); } } db_reload(); my $sth = do_query($dbh, "select * from user where User='lyric'", FALSE); if ($sth->rows) { debug("User already setup\n"); } else { debug("Creating mysql user.."); for my $host ("%", "localhost") { $sth = do_query($dbh, "CREATE USER 'lyric'\@'".$host."' IDENTIFIED BY ''", FALSE); $sth = do_query($dbh, "GRANT SELECT, INSERT, UPDATE, DELETE, LOCK TABLES, EXECUTE ON *.* TO 'lyric'\@'".$host."'", FALSE); } $sth = do_query($dbh, "FLUSH PRIVILEGES", FALSE); debug("Done\n"); } db_check_databases(); return NULL; } #*** #****f* lyricue/db_check_databases # NAME # db_check_databases # SYNOPSIS # db_check_databases() # FUNCTION # Update/install databases # INPUTS # OUTPUT # SOURCE # sub db_check_databases { debug("Update/install databases"); my @dbs = DBI->data_sources("mysql", {"host" => $globals->{'mysqlhost'}, "user" => "lyric"}); foreach (@dbs) { $_ =~ s/^DBI:.*://g; $globals->{'db_available_db'}{$_} = TRUE; } if ($globals->{'db_available_db'}{'lyricDb'}) { db_updatedb_lyricDb(); } else { db_installdb($globals->{'sharedir'} . "mysql/Create_lyricDb.sql", "lyricDb"); } if ($globals->{'db_available_db'}{'mediaDb'}) { db_updatedb_mediaDb(); } else { debug("Creating mediaDb"); db_installdb($globals->{'sharedir'} . "mysql/Create_mediaDb.sql", "mediaDb"); db_reload(); debug("Done\n"); } } #*** #****f* lyricue/db_reload # NAME # db_reload # SYNOPSIS # db_reload() # FUNCTION # Reload db # INPUTS # OUTPUT # SOURCE # sub db_reload { debug("Reload db"); if ($globals->{'db_adminuser'} eq "") { db_get_admin(); } debug( "user:" . $globals->{'db_adminuser'} . " Pass:" . $globals->{'db_adminpassword'}); my $sqldb = DBI->connect( "DBI:mysql:mysql:" . $globals->{'mysqlhost'}, $globals->{'db_adminuser'}, $globals->{'db_adminpassword'} ); $sqldb->func('reload', 'admin'); $sqldb->disconnect(); debug("reload done"); } #*** #****f* lyricue/db_installdb # NAME # db_installdb # SYNOPSIS # db_installdb($db_file, $db_name) # FUNCTION # Install db from # INPUTS # $db_file - # $db_name - # OUTPUT # SOURCE # sub db_installdb { my ($db_file, $db_name) = @_; debug("Install db from " . $db_file); if ($globals->{'db_adminuser'} eq "") { db_get_admin(); } system( "cat " . $db_file . " | mysql -f -h " . $globals->{'mysqlhost'} . " -u " . $globals->{'db_adminuser'} . " --password=\"" . $globals->{'db_adminpassword'} . "\""); } #*** #****f* lyricue/db_updatedb_mediaDb # NAME # db_updatedb_mediaDb # SYNOPSIS # db_updatedb_mediaDb() # FUNCTION # Update the mediaDb table if needed # INPUTS # OUTPUT # SOURCE # sub db_updatedb_mediaDb { debug("Update the mediaDb table if needed"); my $dbh = db_connect($globals->{'mediadb'}, "", TRUE); my $fields = $dbh->selectall_arrayref("describe media"); my $trans; foreach (@$fields) { $trans->{$_->[0]} = 1; } if (!defined $trans->{'textcolour'}) { debug("Text Colouring fields not found\n"); debug("Adding fields to mediaDb\n"); db_installdb($globals->{'sharedir'} . "mysql/Add_mediadb_colour.sql", "lyricDb"); debug("Done\n"); } } #*** #****f* lyricue/db_updatedb_lyricDb # NAME # db_updatedb_lyricDb # SYNOPSIS # db_updatedb_lyricDb() # FUNCTION # Update the lyricDb table if needed # INPUTS # OUTPUT # SOURCE # sub db_updatedb_lyricDb { debug("Update the lyricDb table if needed"); my $dbh = db_connect($globals->{'lyricdb'}, $errorcodes->{'lyricdbopen'}, TRUE); my @tables = $dbh->tables; my $table; foreach (@tables) { $_ =~ s/^.*`(.*)`$/$1/g; $_ =~ s/^"(.*)"$/$1/g; $table->{$_} = 1; } if (!defined $table->{'associations'}) { debug("Associations table not found\n"); debug("Upgrading database from < 1.2 to 1.2\n"); db_installdb($globals->{'sharedir'} . "mysql/Update_1.2.sql", "lyricDb"); debug("Done\n"); } if (!defined $table->{'config'}) { debug("Configuration tables not found\n"); debug("Upgrading database from < 2.4 to 2.4\n"); db_installdb($globals->{'sharedir'} . "mysql/Add_config.sql", "lyricDb"); debug("Done\n"); } my $fields = $dbh->selectall_arrayref("describe playlist"); my $trans; foreach (@$fields) { $trans->{$_->[0]} = 1; } if (!defined $trans->{'transition'}) { debug("Transition field not found\n"); debug("Upgrading database from 1.2 to 1.9\n"); db_installdb($globals->{'sharedir'} . "mysql/Add_transition.sql", "lyricDb"); debug("Done\n"); } # Increase data size - does nothing if already done - only works for mysql $fields = $dbh->selectall_arrayref("describe playlist"); my $pl; foreach (@$fields) { $pl->{$_->[0]} = $_->[1]; } if ($pl->{'data'} ne "varchar(256)") { db_installdb($globals->{'sharedir'} . "mysql/Expand_data.sql", "lyricDb"); } if (!defined $pl->{'snapshot'}) { db_installdb($globals->{'sharedir'} . "mysql/Add_snapshot.sql", "lyricDb"); } # Add page title $fields = $dbh->selectall_arrayref("describe page"); my $page; foreach (@$fields) { $page->{$_->[0]} = $_->[1]; } if (!defined $page->{'pagetitle'}) { db_installdb($globals->{'sharedir'} . "mysql/Add_pagetitle.sql", "lyricDb"); } # Add status table if (!defined $table->{'status'}) { debug("Status tables not found\n"); debug("Upgrading database from < 3.6 to 3.6\n"); db_installdb($globals->{'sharedir'} . "mysql/Add_Profiles.sql", "lyricDb"); debug("Done\n"); } # Add IP column $fields = $dbh->selectall_arrayref("describe status"); my $stat; foreach (@$fields) { $stat->{$_->[0]} = 1; } if (!defined $stat->{'ip'}) { debug("IP field not found\n"); debug("Upgrading database to 3.6.7\n"); db_installdb($globals->{'sharedir'} . "mysql/Add_ip.sql", "lyricDb"); debug("Done\n"); } # Ensure all tables are in UTF8 characterset my @toconvert = (); foreach my $tname (keys %$table) { my $fields = $dbh->selectall_arrayref("show create table " . $tname); foreach (@$fields) { if (!($_->[1] =~ /CHARSET=utf8/)) { push @toconvert, $tname; } } } if (@toconvert > 0) { if ($globals->{'db_adminuser'} eq "") { db_get_admin(); } eval { $dbh = DBI->connect( "DBI:mysql:mysql:" . $globals->{'mysqlhost'}, $globals->{'db_adminuser'}, $globals->{'db_adminpassword'} ); }; if ($dbh) { foreach (@toconvert) { debug("Converting " . $_ . " to utf8"); $dbh->do("ALTER TABLE lyricDb." . $_ . " CONVERT TO CHARACTER SET utf8"); } } } } #*** #****f* lyricue/check_displays # NAME # check_displays # SYNOPSIS # check_displays() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub check_displays { #debug("Check Displays"); $local_preview = FALSE; foreach (keys %$displays) { $displays->{$_}->{'active'} = GONE; } for (keys %$previews) { delete $previews->{$_}; } my $query = "SELECT host, ip, type, title FROM status WHERE TIMEDIFF(NOW(), lastupdate) < '00:00:02' AND profile='" . $globals->{'profile'} . "'"; $sth = do_query($lyricDbh, $query, TRUE); my $status = "0;0;0"; while ($row = $sth->fetchrow_hashref()) { my @keys = split(/:/, $row->{'host'}); my $index = $row->{'ip'} . ":" . $keys[1]; my @type = split(/#/, $row->{'type'},2); if ( ($type[0] eq "normal") || ($type[0] eq "simple") || ($type[0] eq "headless")) { if (defined $displays->{$index}) { $displays->{$index}->{'active'} &= TRUE; #clears GONE bit } else { $displays->{$index}->{'active'} = TRUE; } $displays->{$index}->{'host'} = $row->{'host'}; if (defined $type[1] && ($type[1] ne "")) { $displays->{$index}->{'title'} = $type[1]; } else { $displays->{$index}->{'title'} = $row->{'host'}; } if ($row->{'title'} ne "0;0;0") { $status=$row->{'title'}; } } elsif ($type[0] eq "miniview") { my $extra_data = $row->{'type'}; $extra_data =~ s/^miniview//; $miniviews->{$extra_data}->{'active'} = TRUE; } elsif ($type[0] eq "preview") { $previews->{$index}->{'active'} = TRUE; if ($row->{'host'} =~ /^$globals->{'local_hostname'}/) { $local_preview = TRUE; } } } my ($position, $duration, $state) = split(/;/, $status, 3); my $hscale = $widgets->{'main'}->get_object('hscaleMediaPosition'); if (defined $globals->{'video_skip_signal'}) { $hscale->signal_handler_disconnect($globals->{'video_skip_signal'}); } if ($duration <= 0) { $hscale->set_range(0, 1000); } else { $hscale->set_range(0, $duration); } $hscale->set_value($position); $position = sprintf("%d:%02d", $position / 60, $position % 60); $duration = sprintf("%d:%02d", $duration / 60, $duration % 60); $widgets->{'main'}->get_object('labelMediaPosition') ->set_text($position . "/" . $duration); if ($state) { $widgets->{'main'}->get_object('buttonMediaPlay')->hide; $widgets->{'main'}->get_object('buttonMediaPause')->show_all; } else { $widgets->{'main'}->get_object('buttonMediaPlay')->show_all; $widgets->{'main'}->get_object('buttonMediaPause')->hide; } do_pending(); $globals->{'video_skip_signal'} = $hscale->signal_connect('value-changed' => \&video_skip); init_miniview(); if ($config->{'DynamicPreview'} && !$local_preview) { $globals->{'preview_starting'}--; if ($globals->{'preview_starting'} < 1) { debug("preview gone"); $globals->{'preview_starting'} = 0; if (defined $widgets->{'preview'}) { $widgets->{'main'}->get_object('framePreview') ->remove($widgets->{'preview'}); undef $widgets->{'preview'}; } init_preview(); } } return TRUE; } #****f* lyricue/check_status # NAME # check_status # SYNOPSIS # check_status() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub check_status { #debug("Check status"); # Check for playlist items of simple/normal displays my $query = "SELECT host,p1.playorder AS pl1,p2.playorder AS pl2 FROM playlist AS p1 LEFT JOIN playlist AS p2 ON p1.data=p2.playlist LEFT JOIN status AS st ON st.ref=p2.playorder WHERE (st.type LIKE '%normal%' OR st.type LIKE '%simple%' or st.type LIKE '%headless%') AND st.profile='" . $globals->{'profile'} . "'"; my $sth = do_query($lyricDbh, $query, TRUE); undef $globals->{'current_items'}; while (my $row = $sth->fetchrow_hashref()) { $globals->{'current_items'}->{$row->{'pl1'}} = $row->{'host'}; $globals->{'current_items'}->{$row->{'pl2'}} = $row->{'host'}; } my $model = $widgets->{'main'}->get_object('treePlaylist')->get_model(); if ($model) { $model->foreach(\&update_current); } check_displays(); return TRUE; } #*** #****f* lyricue/video_skip # NAME # video_skip # SYNOPSIS # video_skip() # FUNCTION # Tell server to skip to position # INPUTS # OUTPUT # SOURCE # sub video_skip { my ($hscale) = @_; debug("Skipping to " . $hscale->get_value()); update_display("media", "skip", $hscale->get_value()); } #****f* lyricue/update_current # NAME # update_current # SYNOPSIS # update_current($store, $path, $iter) # FUNCTION # # INPUTS # $store - # $path - # $iter - # OUTPUT # SOURCE # sub update_current { my ($store, $path, $iter) = @_; my $playlistid = $store->get($iter, 2); if (defined $globals->{'current_items'}->{$playlistid}) { $store->set($iter, 1, $config->{'HighlightColour'}); } else { $store->set($iter, 1, undef); } return FALSE; } #*** #****f* lyricue/clear_search # NAME # clear_search # SYNOPSIS # clear_search() # FUNCTION # Clear search entry # INPUTS # OUTPUT # SOURCE # sub clear_search { debug("Clear search entry"); $widgets->{'main'}->get_object('entrySearch')->set_text(""); $widgets->{'main'}->get_object('entrySearch')->grab_focus(); } #*** #****f* lyricue/db_connect # NAME # db_connect # SYNOPSIS # db_connect($dbname, $dberror, $fatal) # FUNCTION # # INPUTS # $dbname - # $dberror - # OUTPUT # SOURCE # sub db_connect { my ($dbname, $dberror, $fatal) = @_; my ($dbh); $dbh = DBI->connect("DBI:mysql:database=$dbname;host=$globals->{'mysqlhost'}", "lyric", "", {mysql_enable_utf8 => 1, mysql_auto_reconnect => 1}) || display_error($dberror, $DBI::errstr, $fatal); if ($dbh != NULL) { $dbh->do('SET NAMES utf8'); } return $dbh; } #*** #****f* lyricue/db_restart # NAME # db_restart # SYNOPSIS # db_restart() # FUNCTION # Reconnecting to DBs # INPUTS # OUTPUT # SOURCE # sub db_restart { debug("Reconnecting to DBs"); $lyricDbh->disconnect(); $mediaDbh->disconnect(); db_select(); if (defined $config->{'DefBible'} && ($config->{'DefBible'} ne "")) { my @tmpbible = split(/;/, $config->{'DefBible'}, 2); $globals->{'biblename'} = $tmpbible[1]; @tmpbible = split(/:/, $tmpbible[0], 2); do_change_bible($tmpbible[1], $tmpbible[0]); } choose_playlist(); } #*** #****f* lyricue/db_select # NAME # db_select # SYNOPSIS # db_select() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub db_select { # Open lyricDB, bibleDB and mediaDb my $sqldb = DBI->connect("DBI:mysql:lyricDb:" . $globals->{'mysqlhost'}, "lyric", "") || db_install_user(); if (defined $sqldb && ($sqldb != NULL)) { $sqldb->disconnect(); } db_check_databases(); $lyricDbh = db_connect($globals->{'lyricdb'}, $errorcodes->{'lyricdbopen'}, TRUE); $mediaDbh = db_connect($globals->{'mediadb'}, $errorcodes->{'mediadbopen'}, TRUE); use Net::Rendezvous::Publish; my $publisher = Net::Rendezvous::Publish->new or die "couldn't make a Responder object"; my $dbhost = $globals->{'mysqlhost'}; if ($dbhost eq "localhost") { $dbhost = hostname(); } my $service = $publisher->publish( name => "Lyricue Interface", type => '_lyricue._tcp', port => 0, txt => "database=" . $dbhost ); $config->{'Bibles'} = get_bibles(); } #*** #****f* lyricue/add_to_playlist_search # NAME # add_to_playlist_search # SYNOPSIS # add_to_playlist_search($widget) # FUNCTION # Songid \"" . $songid . "\" selected # INPUTS # $widget - # OUTPUT # SOURCE # sub add_to_playlist_search { my ($widget) = @_; my $selection = $widgets->{'search'}->get_object('treeSearch')->get_selection; my ($model, $iter) = $selection->get_selected; if ($iter) { my $songid = $model->get($iter, 4); debug("Songid \"" . $songid . "\" selected"); add_single_song($songid); update_playlist(); } } #*** #****f* lyricue/on_hboxBackImage_drag_data_received # NAME # on_hboxBackImage_drag_data_received # SYNOPSIS # on_hboxBackImage_drag_data_received($widget, $context, $x, $y, $data, $info, $time) # FUNCTION # Dropped on backgrounds # INPUTS # $widget - # $context - # $x - # $y - # $data - # $info - # $time - # OUTPUT # SOURCE # sub on_hboxBackImage_drag_data_received { debug("Dropped on backgrounds"); my ($widget, $context, $x, $y, $data, $info, $time) = @_; my $category = $globals->{'category'}; if (($category ne "") && ($data->get_text ne "")) { debug("Recieved " . $data->get_text()); if ($data->get_text()) { my @uris = split(/\n/, $data->get_text()); my ($filename, $format, $description); my $owner = getpwuid($<); my @date = localtime(time); my $time = sprintf( "%04d-%02d-%02d %02d:%02d:%02d", $date[5] + 1900, $date[4], $date[3], $date[2], $date[1], $date[0] ); for my $uri (@uris) { $filename = URI->new($uri); debug("Category: $category, Filename: " . $filename->file); $format = $filename->file; $format =~ s/^.*\.//g; $description = $filename->file; $description =~ s/^.*\///g; $description =~ s/\..*?$//g; open(MEDIA, $filename->file); my $filedata = ""; while () { $filedata .= $_; } close MEDIA; debug("Length: " . length($filedata)); my $sth = $mediaDbh->prepare( q{INSERT INTO media(category, subcategory, type, format, insertedby, insertdate, description, data) VALUES (?,?,?,?,?,?,?,?)} ); my $rv = $sth->execute($category, "", "bg", $format, $owner, $time, $description, $filedata); } bgdir_change($widget, $category); } #$context->finish(1, 0, $time); return; } else { debug("global category=$category"); } } #*** #****f* lyricue/alphanum # NAME # alphanum # SYNOPSIS # alphanum() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub alphanum { # $a and $b are automagically passed to alphanum. # A copy of them has to be made, or else we will edit the global $a and $b my $a_copy = $a; my $b_copy = $b; my $n = 0; while ($n == 0) { # Get next "chunk" # (A chunk is either a group of letters or a group of numbers) my ($a_chunk) = $a_copy =~ /([\D]+|[\d]+)/; $a_copy = substr($a_copy, length($a_chunk), length($a_copy) - length($a_chunk)); my ($b_chunk) = $b_copy =~ /([\D]+|[\d]+)/; $b_copy = substr($b_copy, length($b_chunk), length($b_copy) - length($b_chunk)); # Compare the chunks # Case 1: They both contain letters if (($a_chunk =~ /\D+/) && ($b_chunk =~ /\D+/)) { $n = $a_chunk cmp $b_chunk; } # Case 2: They both contain numbers else { if (($a_chunk =~ /\d+/) && ($b_chunk =~ /\d+/)) { $n = $a_chunk <=> $b_chunk; } # Case 3: One has letters, one has numbers; or one is empty else { $n = $a_chunk cmp $b_chunk; # If these are equal, make one (which one is arbitrary) come before # the other (or else we'll be stuck in this "while $n==0" loop) if ($n == 0) { $n = 1 } } } } return $n; } #*** #****f* lyricue/fromutf # NAME # fromutf # SYNOPSIS # fromutf($line) # FUNCTION # # INPUTS # $line - # OUTPUT # SOURCE # sub fromutf { my ($line) = @_; utf8::decode($line) unless utf8::is_utf8($line); return $line; } #*** #****f* lyricue/toutf # NAME # toutf # SYNOPSIS # toutf($line) # FUNCTION # # INPUTS # $line - # OUTPUT # SOURCE # sub toutf { my ($line) = @_; return Encode::encode("utf8", $line); } #*** #****f* lyricue/pause_media # NAME # pause_media # SYNOPSIS # pause_media() # FUNCTION # Play/Pause media # INPUTS # OUTPUT # SOURCE # sub pause_media { debug("Play/Pause media"); update_display("media", "pause", ""); } #*** #****f* lyricue/media_v4l # NAME # media_v4l # SYNOPSIS # media_v4l() # FUNCTION # Starting Live Video # INPUTS # OUTPUT # SOURCE # sub media_v4l { debug("Starting Live Video"); update_display("backdrop", "uri;v4l2#SEMI#//"); } #*** #****f* lyricue/media_dvd # NAME # media_dvd # SYNOPSIS # media_dvd() # FUNCTION # Starting DVD Video # INPUTS # OUTPUT # SOURCE # sub media_dvd { debug("Checking DVD"); $widgets->{'dialogDvd'} = load_window('dialogDvd'); my $vbox = $widgets->{'dialogDvd'}->get_object('vboxDvd'); my $com = `lsdvd -Op`; #my $com = `./lsdvd-test.sh -Op`; $com =~ s/^our //g; eval $com; my $tracks = $lsdvd{'track'}; my $longest_track = $lsdvd{'longest_track'}; if (!defined $longest_track) { display_message( fromutf(gettext("No DVD titles found")), fromutf( gettext( "Unable to open the dvd. There may be no media in the drive" ) ) ); return; } my $longest = Gtk3::RadioButton->new(undef, "Longest title (" . $longest_track . ")"); $longest->{user_data} = $longest_track; $vbox->add($longest); $longest->show(); foreach (@$tracks) { my $radio = Gtk3::RadioButton->new($longest, "Title " . $_->{"ix"} . " - " . sec_to_time($_->{"length"})); debug("Title " . $_->{"ix"} . " - " . sec_to_time($_->{"length"})); $radio->{user_data} = $_->{"ix"}; $vbox->add($radio); $radio->show(); if ($_->{"ix"} == $longest_track) { select_dvdtitle($longest, $_->{"length"}); } $radio->signal_connect(toggled => \&select_dvdtitle, $_->{"length"}); } $longest->set_active(TRUE); $widgets->{'dialogDvd'}->get_object('comboDvdEnd')->set_active(0); my $confirm = $widgets->{'dialogDvd'}->get_object('dialogDvd')->run(); if ($confirm == 0) { my $selected = 0; my $group = $longest->get_group; my $length = 0; foreach my $r (@$group) { if ($r->get_active) { $selected = $r->{user_data}; } } debug("Adding DVD title:" . $selected); my $type = $widgets->{'dialogDvd'}->get_object('comboDvdEnd')->get_active; my $start = time_to_sec( $widgets->{'dialogDvd'}->get_object('entryDvdStart')->get_text); my $end = time_to_sec( $widgets->{'dialogDvd'}->get_object('entryDvdEnd')->get_text); my $total = $widgets->{'dialogDvd'}->get_object('entryDvdEnd')->{user_data}; if ($type == 1) { $end = $start + $end; } if (($start eq 0) && (($end - 1) < $total) && (($end + 1) > $total)) { do_add_file("dvd://" . $selected, $widgets->{'main'}->get_object('labelCurrentPlaylist') ->{user_data}); } else { do_add_file( "dvd://" . $selected . " " . sec_to_time($start) . "-" . sec_to_time($end), $widgets->{'main'}->get_object('labelCurrentPlaylist') ->{user_data} ); } update_playlist(); } close_dialog($widgets->{'dialogDvd'}->get_object('dialogDvd')); } #*** #****f* lyricue/select_dvdtitle # NAME # select_dvdtitle # SYNOPSIS # select_dvdtitle($widget, $length) # FUNCTION # Fill in the start/end times for dvd media # INPUTS # OUTPUT # SOURCE # sub select_dvdtitle { my ($widget, $length) = @_; if ($widget->get_active) { $widgets->{'dialogDvd'}->get_object('comboDvdEnd')->set_active(0); $widgets->{'dialogDvd'}->get_object('entryDvdStart') ->set_text(sec_to_time(0)); $widgets->{'dialogDvd'}->get_object('entryDvdEnd') ->set_text(sec_to_time($length)); $widgets->{'dialogDvd'}->get_object('entryDvdEnd')->{user_data} = $length; } } #*** #****f* lyricue/sec_to_time # NAME # sec_to_time # SYNOPSIS # sec_to_time($seconds) # FUNCTION # Convert seconds to pretty 0:00:00 format # INPUTS # OUTPUT # SOURCE # sub sec_to_time { my ($seconds) = @_; if (!defined $seconds) { $seconds = 0; } my @parts = gmtime($seconds); if ($parts[2] == 0) { return sprintf("%d:%02d", @parts[1, 0]); } else { return sprintf("%d:%02d:%02d", @parts[2, 1, 0]); } } #*** #****f* lyricue/time_to_sec # NAME # time_to_sec # SYNOPSIS # time_to_sec($time) # FUNCTION # Convert pretty 0:00:00 format to seconds # INPUTS # OUTPUT # SOURCE # sub time_to_sec { my ($time) = @_; if (!defined $time) { return 0; } my @parts = split(/:/, $time); if (defined $parts[2]) { return ($parts[0] * 3600) + ($parts[1] * 60) + $parts[2]; } elsif (defined $parts[1]) { return ($parts[0] * 60) + $parts[1]; } else { return $parts[0]; } } #*** #****f* lyricue/install_bibles # NAME # install_bibles # SYNOPSIS # install_bibles() # FUNCTION # Loading bible install window # INPUTS # OUTPUT # SOURCE # sub install_bibles { debug("Loading bible install window"); $widgets->{'bible'} = load_window("windowBibleManager"); $widgets->{'bible'}->get_object('buttonBibleSword')->{'user_data'} = "http://crosswire.org/sword/modules/ModDisp.jsp?modType=Bibles"; $widgets->{'bible'}->get_object('buttonBibleDB')->{'user_data'} = "http://www.lyricue.org/bibles"; $widgets->{'bible'}->get_object('windowBibleManager')->show_all(); } #*** #****f* lyricue/do_install_bible # NAME # do_install_bible # SYNOPSIS # do_install_bible() # FUNCTION # No file selected # INPUTS # OUTPUT # SOURCE # sub do_install_bible { my $dbfilename = $widgets->{'bible'}->get_object('fileBibleInstall')->get_filename(); close_dialog($widgets->{'bible'}->get_object('windowBibleManager')); if (!defined $dbfilename) { debug("No file selected"); return; } debug("Installing bible from " . $dbfilename); my $message = ""; my $tmpdir = tempdir("lyricue-XXXX", TMPDIR => 1, CLEANUP => 1); if ($dbfilename =~ /sql.gz$/i) { # Compressed bibleDb my $command = "gzip -dc \"" . $dbfilename . "\" > " . $tmpdir . "/bibleDb.sql"; debug($command); system($command); $dbfilename = $tmpdir . "/bibleDb.sql"; } if ($dbfilename =~ /sql$/i) { # Uncompressed bibleDb open(DB, $dbfilename); debug("bibleDb: " . $dbfilename); my $dbname = "bibleDb"; while () { if (/^CREATE DATABASE.*;$/) { $dbname = $_; $dbname =~ s/^CREATE DATABASE (.*);$/$1/g; last; } } close DB; if ($dbname ne "") { db_installdb($dbfilename, $dbname); $message = gettext("Bible installed from ") . $dbfilename; } else { $message = gettext("Unable to load from ") . $dbfilename; } } elsif ($dbfilename =~ /zip$/i) { # Sword bible my $command = "unzip \"" . $dbfilename . "\" -d \$HOME/.sword/"; debug($command); system($command); $message = "Sword bible extracted to ~/.sword"; } my $donexml = load_window('dialogError'); $donexml->get_object('labelError')->set_text($message); $donexml->get_object('expanderDetails')->hide(); my $confirm = $donexml->get_object('dialogError')->run(); close_dialog($donexml->get_object('dialogError')); load_biblemenu(); } #*** #****f* lyricue/load_link # NAME # load_link # SYNOPSIS # load_link($widget) # FUNCTION # Load URL: # INPUTS # $widget - # OUTPUT # SOURCE # sub load_link { my ($widget) = @_; debug("Load URL:" . $widget->{'user_data'}); my $command = "xdg-open " . $widget->{'user_data'}; system($command); } #*** #****f* lyricue/load_biblemenu # NAME # load_biblemenu # SYNOPSIS # load_biblemenu() # FUNCTION # Populate biblemenu # INPUTS # OUTPUT # SOURCE # sub load_biblemenu { debug("Populate biblemenu"); my $menutop = Gtk3::Menu->new(); my $group = -1; my $bibleMenuAdd = Gtk3::MenuItem->new_with_label(gettext("Install new bibles")); $bibleMenuAdd->signal_connect(activate => \&install_bibles); $bibleMenuAdd->show(); $menutop->append($bibleMenuAdd); db_check_databases(); $config->{'Bibles'} = get_bibles(); my $bibles = $config->{'Bibles'}; my ($defbible, undef) = split(/\:/, $config->{'DefBible'}, 2); my @swordBibles = (); my @dbBibles = (); foreach (sort keys %$bibles) { if (/@/) { push @dbBibles, $_; } else { push @swordBibles, $_; } } foreach (@dbBibles, "", @swordBibles) { if ($_ eq "") { my $sep = Gtk3::SeparatorMenuItem->new; $sep->show; $menutop->append($sep); } else { my @bible = split(/;/, $config->{'Bibles'}->{$_}, 2); $bibleMenu->{$_} = Gtk3::RadioMenuItem->new_with_label($group, $bible[1]); if ($group == -1) { $group = $bibleMenu->{$_}->get_group; } $bibleMenu->{$_}->signal_connect( toggled => \&select_bible_db, $bible[0] . ";" . $_ ); if (defined($defbible) && ($_ eq $defbible)) { $bibleMenu->{$_}->set_active(TRUE); } $bibleMenu->{$_}->show; $menutop->append($bibleMenu->{$_}); } } $widgets->{'main'}->get_object('bible1')->set_submenu($menutop); } #*** #****f* lyricue/open_dirchooser # NAME # open_dirchooser # SYNOPSIS # open_dirchooser($widget) # FUNCTION # Opening Directory chooser # INPUTS # $widget - # OUTPUT # SOURCE # sub open_dirchooser { my ($widget) = @_; debug("Opening Directory chooser"); my $directoryxml = load_window('dialogDirChooser'); my $dir = $widget->get_label(); $dir =~ s/^~/$ENV{'HOME'}/; $directoryxml->get_object('dialogDirChooser')->set_filename($dir); my $confirm = $directoryxml->get_object('dialogDirChooser')->run(); if ($confirm eq "ok") { $dir = $directoryxml->get_object('dialogDirChooser')->get_filename(); $dir =~ s/^$ENV{'HOME'}/~/; if ($widget->{'user_data'} eq "img") { $widgets->{'prefs'}->get_object('filePrefSpecialImagedir') ->set_label($dir); } elsif ($widget->{'user_data'} eq "bg") { $widgets->{'prefs'}->get_object('filePrefSpecialBGdir') ->set_label($dir); } elsif ($widget->{'user_data'} eq "fr_img") { $widgets->{'firstrunxml'}->get_object('fileFRImagedir') ->set_label($dir); } elsif ($widget->{'user_data'} eq "fr_bg") { $widgets->{'firstrunxml'}->get_object('fileFRBGdir') ->set_label($dir); } } close_dialog($directoryxml->get_object('dialogDirChooser')); } #*** #****f* lyricue/import_db # NAME # import_db # SYNOPSIS # import_db() # FUNCTION # Import DB selected # INPUTS # OUTPUT # SOURCE # sub import_db { debug("Import DB selected"); my $importxml = load_window('dialogImportData'); my $filter = Gtk3::FileFilter->new(); $filter->add_pattern("*.xmlz"); $filter->add_pattern("*.xml"); $importxml->get_object('fileImportData')->set_filter($filter); my $confirm = $importxml->get_object('dialogImportData')->run(); debug(":" . $confirm); if ($confirm == 0) { my $filename = $importxml->get_object('fileImportData')->get_filename(); if (defined $filename) { close_dialog($importxml->get_object('dialogImportData')); import_songs($filename); return; } } close_dialog($importxml->get_object('dialogImportData')); } #*** #****f* lyricue/export_db # NAME # export_db # SYNOPSIS # export_db() # FUNCTION # Export DB selected # INPUTS # OUTPUT # SOURCE # sub export_db { debug("Export DB selected"); my $exportxml = load_window('dialogFileChooser'); my $filter = Gtk3::FileFilter->new; $filter->add_pattern("*.xmlz"); $exportxml->get_object('dialogFileChooser')->set_filter($filter); $exportxml->get_object('dialogFileChooser')->set_filename("lyricue.xmlz"); $exportxml->get_object('dialogFileChooser') ->set_title(gettext("Enter filename for export")); my $confirm = $exportxml->get_object('dialogFileChooser')->run(); if ($confirm) { my $filename = $exportxml->get_object('dialogFileChooser')->get_filename; $filename =~ s/\..*?$//g; $filename .= ".xmlz"; if (defined $filename) { export_songs($filename); } close_dialog($exportxml->get_object('dialogFileChooser')); } } #*** #****f* lyricue/biblebrowser_init # NAME # biblebrowser_init # SYNOPSIS # biblebrowser_init() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub biblebrowser_init { my @items = ('Old Testament', 'New Testament'); biblebrowser_loaditems("book", \@items, 2); } #*** #****f* lyricue/biblebrowser_book # NAME # biblebrowser_book # SYNOPSIS # biblebrowser_book() # FUNCTION # Looking up # INPUTS # OUTPUT # SOURCE # sub biblebrowser_book { my ($widget, $section) = @_; debug("Looking up " . $section); my @items = (); if ($section eq "Old Testament") { @items = ( 'Genesis', 'Exodus', 'Leviticus', 'Numbers', 'Deuteronomy', 'Joshua', 'Judges', 'Ruth', '1 Samuel', '2 Samuel', '1 Kings', '2 Kings', '1 Chronicles', '2 Chronicles', 'Ezra', 'Nehemiah', 'Esther', 'Job', 'Psalms', 'Proverbs', 'Ecclesiastes', 'Song of Songs', 'Isaiah', 'Jeremiah', 'Lamentations', 'Ezekiel', 'Daniel', 'Hosea', 'Joel', 'Amos', 'Obadiah', 'Jonah', 'Micah', 'Nahum', 'Habakkuk', 'Zephaniah', 'Haggai', 'Zechariah', 'Malachi' ); } else { @items = ( 'Matthew', 'Mark', 'Luke', 'John', 'Acts', 'Romans', '1 Corinthians', '2 Corinthians', 'Galatians', 'Ephesians', 'Philippians', 'Colossians', '1 Thessalonians', '2 Thessalonians', '1 Timothy', '2 Timothy', 'Titus', 'Philemon', 'Hebrews', 'James', '1 Peter', '2 Peter', '1 John', '2 John', '3 John', 'Jude', 'Revelation' ); } biblebrowser_loaditems("chapter", \@items, 3); } #*** #****f* lyricue/biblebrowser_chapter # NAME # biblebrowser_chapter # SYNOPSIS # biblebrowser_chapter($widget, $book, $source) # FUNCTION # Looking up book # INPUTS # $widget - # $book - # $source - # OUTPUT # SOURCE # sub biblebrowser_chapter { my ($widget, $book, $source) = @_; if (!defined $source) { $source="button"; } debug("Looking up book " . $book); my $translated_book = gettext($book); my $cont = FALSE; my $maxchap = 0; if ($globals->{'usesword'}) { # Find proper book name my $command = sprintf( "%s -b %s -e UTF8 -k '%s' 1:1 '%s' 1:1", $globals->{'diatheke'}, $globals->{'bibledb'}, $book, $translated_book ); $maxchap = fromutf(`$command`); ($book, undef) = split(/\s\d/, $maxchap, 2); $command = sprintf( "%s -b %s -e UTF8 -k '%s' | grep '^%s'| tail -1", $globals->{'diatheke'}, $globals->{'bibledb'}, $book, $book ); $maxchap = fromutf(`$command`); $maxchap =~ s/^$book ([0-9]*):[0-9].*$/$1/g; if ($maxchap) { $cont = TRUE; } } else { my ($table, $dbname) = split(/@/, $globals->{'bibledb'}, 2); my $query = "SELECT MAX(chapternum) FROM " . $table . " WHERE book like \"" . toutf($book) . "%\" or book like \"" . toutf($translated_book) . "%\""; $sth = do_query($bibleDbh, $query, FALSE); if (my @row = $sth->fetchrow_array) { $cont = TRUE; $maxchap = $row[0]; } $sth->finish; } if ($cont) { my @items = (); foreach (1 .. $maxchap) { push @items, $_; } biblebrowser_loaditems("verse", \@items, 8); if ($source ne "entry") { $widgets->{'main'}->get_object('entryNavVerse') ->prepend(text => $book . " "); $widgets->{'main'}->get_object('entryNavVerse')->set_active(0); } } } #*** #****f* lyricue/biblebrowser_verse # NAME # biblebrowser_verse # SYNOPSIS # biblebrowser_verse($widget, $chapter, $source) # FUNCTION # biblebrowser_verse called from ".$source.": # INPUTS # $widget - # $chapter - # $source - # OUTPUT # SOURCE # sub biblebrowser_verse { my ($widget, $chapter, $source) = @_; if (defined ($globals->{'ignore_signals'}) && $globals->{'ignore_signals'}) { return; } if (!defined $source) { $source="button"; } debug("biblebrowser_verse called from " . $source . ":" . $chapter); my $book = $widgets->{'main'}->get_object('entryNavVerse')->get_active_text(); $book =~ s/ *$//g; if ($chapter == 0) { $chapter = $book; $chapter =~ s/^.*( [0-9:\-]*)/$1/; my $verse = ""; ($chapter, $verse) = split(/:/, $chapter); $book =~ s/ [0-9:\-]*$//; if ((!defined $verse) || ((defined $verse) && ($verse eq ""))) { $globals->{'verseStart'} = 0; $globals->{'verseEnd'} = 0; } } if ($source ne "entry") { $widgets->{'main'}->get_object('entryNavVerse')->get_child->set_text($book . " " . $chapter); } debug("Looking up book " . $book . " chapter " . $chapter); my $maxverse = 0; if ($globals->{'usesword'}) { my $command = sprintf( "%s -b %s -e UTF8 -k '%s' %d | grep '^%s' | tail -1", $globals->{'diatheke'}, $globals->{'bibledb'}, $book, $chapter, $book ); $maxverse = fromutf(`$command`); $maxverse =~ s/^$book [0-9]*:([0-9]*):.*$/$1/g; } else { my ($table, $dbname) = split(/@/, $globals->{'bibledb'}, 2); my $query = "SELECT MAX(versenum) FROM " . $table . " WHERE book LIKE \"" . toutf($book) . "%\" AND chapternum=\"" . $chapter . "\""; $sth = do_query($bibleDbh, $query, FALSE); if (my @row = $sth->fetchrow_array) { $maxverse = $row[0]; } } if ($maxverse) { my @items = (); foreach (1 .. $maxverse) { push @items, $_; } biblebrowser_loaditems("verses", \@items, 8); if ($source ne "entry") { $widgets->{'main'}->get_object('entryNavVerse')->get_child ->set_text($book . " " . $chapter); } } } #*** #****f* lyricue/biblebrowser_loaditems # NAME # biblebrowser_loaditems # SYNOPSIS # biblebrowser_loaditems($section, $items, $cols) # FUNCTION # Filling bible section # INPUTS # $section - # $items - # $cols - # OUTPUT # SOURCE # sub biblebrowser_loaditems { my ($section, $items, $cols) = @_; debug("Filling bible section"); my $buttons = $widgets->{'bibleBrowser'}; foreach (keys %$buttons) { $widgets->{'bibleBrowser'}{$_}->destroy(); delete $widgets->{'bibleBrowser'}{$_}; } my $size = @$items; my $buffer = Gtk3::TextBuffer->new(); $widgets->{'main'}->get_object('textBible')->set_buffer($buffer); my $sizegroup = Gtk3::SizeGroup->new('both'); $globals->{'verseStart'} = 0; $globals->{'verseEnd'} = 0; foreach my $itemnum (0 .. ($size - 1)) { if ($section eq "verses") { $widgets->{'bibleBrowser'}{'button' . $itemnum} = Gtk3::ToggleButton->new(@$items[$itemnum]); $widgets->{'bibleBrowser'}{'button' . $itemnum} ->signal_connect(event => \&changeVerseStatus, $size); $widgets->{'bibleBrowser'}{'button' . $itemnum}->show(); } else { $widgets->{'bibleBrowser'}{'button' . $itemnum} = Gtk3::ToggleButton->new(fromutf(gettext(@$items[$itemnum]))); if ($section eq "book") { $widgets->{'bibleBrowser'}{'button' . $itemnum} ->signal_connect( "clicked" => \&biblebrowser_book, @$items[$itemnum] ); } elsif ($section eq "chapter") { $widgets->{'bibleBrowser'}{'button' . $itemnum} ->signal_connect( "clicked" => \&biblebrowser_chapter, @$items[$itemnum] ); } elsif ($section eq "verse") { $widgets->{'bibleBrowser'}{'button' . $itemnum} ->signal_connect( "clicked" => \&biblebrowser_verse, @$items[$itemnum] ); } } $sizegroup->add_widget($widgets->{'bibleBrowser'}{'button' . $itemnum}); $widgets->{'bibleBrowser'}{'button' . $itemnum}->show; my $anchor = $buffer->create_child_anchor($buffer->get_end_iter); $widgets->{'main'}->get_object('textBible') ->add_child_at_anchor($widgets->{'bibleBrowser'}{'button' . $itemnum}, $anchor); } $widgets->{'main'}->get_object('textBible')->show_all(); } #*** #****f* lyricue/firstrun_wizard # NAME # firstrun_wizard # SYNOPSIS # firstrun_wizard() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub firstrun_wizard { debug("First Run Wizard"); $config = load_config(''); $widgets->{'firstrunxml'} = load_window('assistantFirstRun'); $widgets->{'firstrun'} = $widgets->{'firstrunxml'}->get_object('assistantFirstRun'); $widgets->{'firstrun'}->show_all(); } #*** #****f* lyricue/firstrun_cancel # NAME # firstrun_cancel # SYNOPSIS # firstrun_cancel() # FUNCTION # Cancelled Wizard # INPUTS # OUTPUT # SOURCE # sub firstrun_cancel { debug("Cancelled Wizard"); firstrun_close(); } #*** #****f* lyricue/firstrun_close # NAME # firstrun_close # SYNOPSIS # firstrun_close() # FUNCTION # Closing Wizard # INPUTS # OUTPUT # SOURCE # sub firstrun_close { debug("Closing Wizard"); close_dialog($widgets->{'firstrun'}); if ($globals->{'firstrun'}) { Gtk3->main_quit(); } } #*** #****f* lyricue/firstrun_prepare # NAME # firstrun_prepare # SYNOPSIS # firstrun_prepare() # FUNCTION # prepare page: # INPUTS # OUTPUT # SOURCE # sub firstrun_prepare { debug("Firstrun prepare page:" . $widgets->{'firstrun'}->get_current_page); my $page = $widgets->{'firstrun'} ->get_nth_page($widgets->{'firstrun'}->get_current_page); my $font = "Serif 30"; my $header = gettext("First-run wizard"); if ($widgets->{'firstrun'}->get_current_page == 0) { # Intro $header = gettext("Welcome"); $widgets->{'firstrun'}->set_page_complete($page, TRUE); } elsif ($widgets->{'firstrun'}->get_current_page == 1) { $header = gettext("Location"); $widgets->{'firstrunxml'}->get_object('entryFRHostDB') ->set_text($globals->{'mysqlhost'}); $widgets->{'firstrun'}->set_page_complete($page, TRUE); } elsif ($widgets->{'firstrun'}->get_current_page == 2) { $globals->{'mysqlhost'} = $widgets->{'firstrunxml'}->get_object('entryFRHostDB')->get_text(); # Database $header = gettext("Database login"); if (defined $lyricDbh) { $widgets->{'firstrun'}->set_page_complete($page, TRUE); $widgets->{'firstrun'} ->set_current_page($widgets->{'firstrun'}->get_current_page + 1); } else { firstrun_pw_check(); } } elsif ($widgets->{'firstrun'}->get_current_page == 3) { # Directories $header = gettext("Image Directories"); $widgets->{'firstrunxml'}->get_object('fileFRBGdir') ->set_label($config->{'BGDirectory'}); $widgets->{'firstrunxml'}->get_object('fileFRBGdir')->{'user_data'} = "fr_bg"; $widgets->{'firstrunxml'}->get_object('fileFRImagedir') ->set_label($config->{'ImageDirectory'}); $widgets->{'firstrunxml'}->get_object('fileFRImagedir')->{'user_data'} = "fr_img"; $widgets->{'firstrun'}->set_page_complete($page, TRUE); } elsif ($widgets->{'firstrun'}->get_current_page == 4) { # Confirm $widgets->{'firstrun'}->set_page_complete($page, TRUE); } } #*** #****f* lyricue/firstrun_pw_changed # NAME # firstrun_pw_changed # SYNOPSIS # firstrun_pw_changed() # FUNCTION # Firstrun login changed # INPUTS # OUTPUT # SOURCE # sub firstrun_pw_changed { debug("Firstrun login changed"); reset_timer($globals->{'fr_update_timer'}); $globals->{'fr_update_timer'} = Glib::Timeout->add(500, \&firstrun_pw_check); } #*** #****f* lyricue/firstrun_pw_check # NAME # firstrun_pw_check # SYNOPSIS # firstrun_pw_check() # FUNCTION # Checking login # INPUTS # OUTPUT # SOURCE # sub firstrun_pw_check { debug("Checking login"); reset_timer($globals->{'fr_update_timer'}); $globals->{'db_adminuser'} = $widgets->{'firstrunxml'}->get_object('entryFRUsername')->get_text(); $globals->{'db_adminpassword'} = $widgets->{'firstrunxml'}->get_object('entryFRPassword')->get_text(); my $page = $widgets->{'firstrun'} ->get_nth_page($widgets->{'firstrun'}->get_current_page); my ($dbh); eval { $dbh = DBI->connect( "DBI:mysql:mysql:" . $globals->{'mysqlhost'}, $globals->{'db_adminuser'}, $globals->{'db_adminpassword'} ); }; if ($dbh) { debug("Login accepted"); $widgets->{'firstrun'}->set_page_complete($page, TRUE); $widgets->{'firstrunxml'}->get_object('labelFRDBCheck') ->set_markup(gettext("Username/Password accepted")); } else { debug("Login failed"); $widgets->{'firstrun'}->set_page_complete($page, FALSE); $widgets->{'firstrunxml'}->get_object('labelFRDBCheck') ->set_markup(gettext("Username/Password failed")); } } #*** #****f* lyricue/firstrun_apply # NAME # firstrun_apply # SYNOPSIS # firstrun_apply() # FUNCTION # Apply Wizard # INPUTS # OUTPUT # SOURCE # sub firstrun_apply { debug("Apply Wizard"); # Confirmed changes - so save them $config->{'ImageDirectory'} = $widgets->{'firstrunxml'}->get_object('fileFRImagedir')->get_label(); $config->{'BGDirectory'} = $widgets->{'firstrunxml'}->get_object('fileFRBGdir')->get_label(); $config->{'DBHost'} = $widgets->{'firstrunxml'}->get_object('entryFRHostDB')->get_text(); $globals->{'mysqlhost'} = $config->{'DBHost'}; db_select(); write_config(); if (!$globals->{'firstrun'}) { init_preview(); init_miniview(); preview_display("reconfig", "", "", "MINI"); update_display("reconfig", "", ""); preview_display("display", "current", "", "MINI"); update_display("display", "current", ""); create_dialog_prefs(); } } #*** #****f* lyricue/firstrun_bible # NAME # SYNOPSIS # firstrun_bible() # FUNCTION # # INPUTS # OUTPUT # SOURCE # sub firstrun_bible { } #*** #****f* lyricue/online-help # NAME # online_help # SYNOPSIS # online_help() # FUNCTION # Load documentation in browser # SOURCE # sub online_help { debug("Load Documentation"); my $command = "xdg-open help:lyricue"; system($command); } #*** #****f* lyricue/start_transaction # NAME # start_transaction # SYNOPSIS # start_transaction() # FUNCTION # Mark the start of a bunch of queries to be run in a single transaction # SOURCE # sub start_transaction { my $globals->{'old_re'} = $lyricDbh->{RaiseError}; $lyricDbh->{RaiseError} = 1; $lyricDbh->{AutoCommit} = 0; } #*** #****f* lyricue/end_transaction # NAME # end_transaction # SYNOPSIS # end_transaction() # FUNCTION # Mark the end of a bunch of queries to be run in a single transaction # SOURCE # sub end_transaction { $lyricDbh->rollback() if $@; $lyricDbh->{AutoCommit} = 1; $lyricDbh->{RaiseError} = $globals->{'old_re'}; } #*** #****f* lyricue/clean_database # NAME # clean_database # SYNOPSIS # clean_database() # FUNCTION # Rescan the image/backgrounds directories # Cleans up old associations # Cleans up left-over playlist items # SOURCE # sub clean_database { debug("Cleaning database"); my $query = "SELECT description,category FROM media WHERE format=\"file\""; my $sth = do_query($mediaDbh, $query, FALSE); while ($row = $sth->fetchrow_hashref()) { my @mystat = stat($row->{'category'}); if (!(@mystat)) { # file no longer exists so remove it from db my $query2 = "DELETE FROM media WHERE format=\"file\" AND category=" . quote($row->{'category'}); my $sth2 = do_query($mediaDbh, $query2, FALSE); } } # Fix leftover font colours $query = "UPDATE media SET shadowcolour=\"\" WHERE shadowcolour=\"Default\""; $sth = do_query($mediaDbh, $query, FALSE); # Remove leftover playlist item from failed re-orders $query = "DELETE FROM playlist WHERE playorder=-1"; $sth = do_query($lyricDbh, $query, FALSE); # Remove old status entries $query = "DELETE FROM status WHERE TIMESTAMPDIFF(SECOND, NOW(), lastupdate) < 120"; $sth = do_query($lyricDbh, $query, FALSE); return FALSE; } #*** sub start_editview { if (defined($widgets->{'EditPreview'})) { stop_editview(); } $widgets->{'EditPreview'} = Gtk3::Socket->new; $widgets->{'EditPreview'}->show; $widgets->{'EditPreview'}->set_size_request(-1, -1); $widgets->{'add'}->get_object('frameEditPreview')->show; $widgets->{'add'}->get_object('frameEditPreview') ->add($widgets->{'EditPreview'}); my $command = sprintf( "%s -r %s -m %d -l %d -p '%s' -t preview", $globals->{'lyricue_server'}, $globals->{'mysqlhost'}, $widgets->{'EditPreview'}->get_id, $globals->{'preview_port'}, $globals->{'profile'} ); debug($command); $globals->{'editview_pid'} = fork; if ($globals->{'editview_pid'} < 0) { display_fatal("Unable to start the lyricue server as a preview window", $! . "\nSQL: " . $query); } if ($globals->{'editview_pid'} == 0) { exec($command); } $widgets->{'EditPreview'}->signal_connect( 'plug-removed' => sub { debug("Lyricue edit preview died..restarting\n"); $widgets->{'main'}->get_object('frameEditPreview') ->remove($widgets->{'preview'}); start_editview(); 1; } ); } sub stop_editview { if (defined($globals->{'editview_pid'})) { kill 9, $globals->{'editview_pid'}; } if (defined($widgets->{'EditPreview'})) { $widgets->{'EditPreview'}->destroy; undef $widgets->{'EditPreview'}; } } sub toggle_blur { debug("Toggle Blur"); my ($widget) = @_; if ($widget->get_active()) { update_display("blur", 1); } else { update_display("blur", 0); } } sub change_fade { debug("Changing fade amount"); my ($widget) = @_; update_display("fade", $widget->get_value()); } sub start_display { debug("Start lyricue display"); execute_app( "", $globals->{'lyricue_server'}, " -p '" . $globals->{'profile'} . "'" ); } #****f* lyricue/export_playlist # NAME # export_playlist # SYNOPSIS # export_playlist () # FUNCTION # Show a dialog to choose where to save an exported playlist to # OUTPUT # File dialog displayed # SOURCE # sub export_playlist { debug("Export playlist"); my $filexml = load_window('dialogFileChooser'); $filexml->get_object('buttonFileOK') ->signal_connect(clicked => \&complete_export_playlist, $filexml); my $filter = Gtk3::FileFilter->new; $filter->add_pattern("*.pdf"); $filexml->get_object('dialogFileChooser')->set_filter($filter); $filexml->get_object('dialogFileChooser')->set_filename("presentation.pdf"); $filexml->get_object('dialogFileChooser') ->set_title(gettext("Enter filename for export")); $filexml->get_object('dialogFileChooser')->show_all(); } #*** #****f* lyricue/complete_export_playlist # NAME # complete_export_playlist # SYNOPSIS # complete_export_playlist ($widget, $filexml) # FUNCTION # Export a playlist to the chosen filename # INPUTS # $widget - Calling widget # $filexml - File dialog # OUTPUT # File containing playlist # SOURCE # sub complete_export_playlist { my ($widget, $filexml) = @_; debug("Exporting playlist"); my $export = $filexml->get_object('dialogFileChooser')->get_filename; close_dialog($widget); my $playlist = $widgets->{'main'}->get_object('labelCurrentPlaylist')->{user_data}; my $tmpdir = tempdir("lyricue-XXXX", DIR => "/var/tmp", CLEANUP => 0); update_display("save", $playlist, $tmpdir); my $command = "convert \"" . $tmpdir . "/*\" \"" . $export . "\""; debug($command); system($command); $command = "rm -rf \"" . $tmpdir . "\""; debug($command); system($command); } #*** sub gather_debug { debug("Saving troubleshooting info"); my $command = "apport-bug lyricue"; debug($command); system($command); } sub load_window { my ($ui_name) = @_; my $builder = Gtk3::Builder->new_from_file($globals->{'sharedir'} . $ui_name . ".ui"); $builder->set_translation_domain('lyricue'); $builder->connect_signals(undef); return $builder; } sub change_notebook_page { my ($widget); my $page = $widgets->{'main'}->get_object('notebookSources')->get_current_page; my $current_page = $widgets->{'main'}->get_object('notebookSources')->get_nth_page($page); if ($current_page == $widgets->{'main'}->get_object('vboxBGDir')) { bgdir_list("bg"); } elsif ($current_page == $widgets->{'main'}->get_object('vboxImgDir')) { bgdir_list("img"); } } sub fix_widget_names { my @dirs = ( 'UpLeft', 'Up', 'UpRight', 'Left', 'None', 'Right', 'DownLeft', 'Down', 'DownRight' ); foreach (@dirs) { $widgets->{'main'}->get_object("toggleIn" . $_) ->set_name("toggleIn" . $_); $widgets->{'main'}->get_object("toggleOut" . $_) ->set_name("toggleOut" . $_); } } sub image_playlist_toggle { debug("Image Playlist toggled"); my ($model); $globals->{'image_playlist'} = $widgets->{'main'}->get_object('checkPreviews')->get_active() ? 1 : 0; if ($globals->{'image_playlist'}) { $widgets->{'main'}->get_object('scrollIconPlaylist')->show_all; $widgets->{'main'}->get_object('scrollPlaylist')->hide; $widgets->{'main'}->get_object('toolbarPlaylist')->hide; $widgets->{'main'}->get_object('frameMainLeft')->hide; } else { $widgets->{'main'}->get_object('scrollIconPlaylist')->hide; $widgets->{'main'}->get_object('scrollPlaylist')->show_all; $widgets->{'main'}->get_object('toolbarPlaylist')->show_all; $widgets->{'main'}->get_object('frameMainLeft')->show_all; } update_playlist(); } sub load_profile_menu { debug("Populate profiles menu"); my $menutop = Gtk3::Menu->new(); my $group = -1; my $query = "SELECT DISTINCT profile FROM config WHERE profile != ''"; $sth = do_query($lyricDbh, $query, FALSE); my $selected_profile = NULL; while (my @row = $sth->fetchrow_array) { my $menuitem = Gtk3::RadioMenuItem->new_with_label($group, $row[0]); if ($group == -1) { $group = $menuitem->get_group; } if ($row[0] eq $globals->{'profile'}) { $selected_profile = $menuitem; } $menuitem->signal_connect(toggled => \&select_profile, $row[0]); $menuitem->show; $menutop->append($menuitem); } my $sep = Gtk3::SeparatorMenuItem->new; $sep->show; $menutop->append($sep); my $menuitem = Gtk3::MenuItem->new_with_label(gettext("Create New Profile")); $menuitem->signal_connect(activate => \&change_pref_profile, "menu"); $menuitem->show; $menutop->append($menuitem); $selected_profile->set_active(TRUE); $widgets->{'main'}->get_object('profiles1')->set_submenu($menutop); } sub select_profile { my ($widget, $profile) = @_; if ($widget->get_active()) { if ($profile ne $globals->{'profile'}) { debug( "Change profile from " . $globals->{'profile'} . " to " . $profile); $globals->{'profile'} = $profile; update_display("profile", $globals->{'profile'}, ""); preview_display("profile", $globals->{'profile'}, ""); my $miniview_widgets = $widgets->{'miniview'}; foreach my $display (keys %$miniview_widgets) { if (defined $widgets->{'miniview'}->{$display}) { $widgets->{'miniview'}->{$display}->destroy; delete $widgets->{'miniview'}->{$display}; } kill 9, $globals->{'miniview_pid'}->{$display}; } $config = load_config($globals->{'profile'}); check_displays(); init_preview(); init_miniview(); choose_playlist(); } } } sub toggle_miniview { my $new_status = FALSE; if ($widgets->{'main'}->get_object('checkCurrent')->get_active()) { $new_status = TRUE; } if ($config->{'Miniview'} != $new_status) { $config->{'Miniview'} = $new_status; init_miniview(); } } sub toggle_preview { my $new_status = FALSE; if ($widgets->{'main'}->get_object('checkPreview')->get_active()) { $new_status = TRUE; } if ($config->{'DynamicPreview'} != $new_status) { $config->{'DynamicPreview'} = $new_status; init_preview(); } } sub toggle_server_active { my ($widget, $display) = @_; if ($widget->get_active) { debug("Set server active for " . $display); $displays->{$display} = TRUE; #$widgets->{'miniview_check'}->{$display}->set_label($display); } else { debug("Set server inactive for " . $display); $displays->{$display} = FALSE; #$widgets->{'miniview_check'}->{$display} # ->set_label(gettext("inactive"). " - ". $display ); } } sub close_miniview { my ($display) = @_; debug("Removing miniview for " . $display); if (defined $miniviews->{$display}) { undef $miniviews->{$display}; } if (defined $widgets->{'miniview_check'}->{$display}) { $widgets->{'miniview_check'}->{$display}->destroy; undef $widgets->{'miniview_check'}->{$display}; } if (defined $widgets->{'miniview_frame'}->{$display}) { $widgets->{'miniview_frame'}->{$display}->destroy; undef $widgets->{'miniview_frame'}->{$display}; } if (defined $widgets->{'miniview'}->{$display}) { $widgets->{'miniview'}->{$display}->destroy; undef $widgets->{'miniview'}->{$display}; } if (defined $globals->{'miniview_pid'}->{$display}) { kill 9, $globals->{'miniview_pid'}->{$display}; undef $globals->{'miniview_pid'}->{$display}; } } sub do_query { my ($dbh, $query, $silent) = @_; if (!$silent) { qdebug($query); } my $sth = $dbh->prepare($query) || database_failure($errorcodes->{'sqlprepare'}, $! . "\nSQL: " . $query); my $rv = $sth->execute || database_failure($errorcodes->{'sqlexecute'}, $! . "\nSQL: " . $query); return $sth; } sub load_profile_manager { debug("Loading Profile Manager"); $widgets->{'profile'} = load_window("windowProfileManager"); my $query = "SELECT DISTINCT profile FROM config WHERE profile != ''"; my $sth = do_query($lyricDbh, $query, FALSE); my $combo_model = Gtk3::ListStore->new('Glib::String'); while (my @row = $sth->fetchrow_array()) { $combo_model->set($combo_model->append, 0, $row[0]); } # Profiles tab my $model = Gtk3::ListStore->new('Glib::String', 'Glib::String', 'Gtk3::ListStore'); $query = "SELECT host,profile FROM profiles"; $sth = do_query($lyricDbh, $query, FALSE); while (my @row = $sth->fetchrow_array()) { $model->set($model->append, 0, $row[0], 1, $row[1], 2, $combo_model); } $widgets->{'profile'}->get_object('treeHosts')->set_model($model); $widgets->{'profile'}->get_object('treeHosts') ->insert_column_with_attributes(-1, 'Host', Gtk3::CellRendererText->new, text => 0); my $combo_renderer = Gtk3::CellRendererCombo->new; $combo_renderer->set( text_column => 0, # col in combo model with text to display editable => TRUE ); $combo_renderer->signal_connect( edited => sub { my ($cell, $text_path, $new_text) = @_; $model->set($model->get_iter_from_string($text_path), 1, $new_text); } ); $widgets->{'profile'}->get_object('treeHosts') ->insert_column_with_attributes( -1, 'Profile', $combo_renderer, text => 1, model => 2 ); $widgets->{'profile'}->get_object('treeProfile')->set_model($combo_model); $widgets->{'profile'}->get_object('treeProfile') ->insert_column_with_attributes(-1, 'Profile Name', Gtk3::CellRendererText->new, text => 0); $widgets->{'profile'}->get_object("windowProfileManager")->show_all; } sub profile_manager_create { debug("Creating new profile"); my $newxml = load_window("dialogPromptEntry"); $newxml->get_object('dialogPromptEntry') ->set_title(fromutf(gettext("Create new profile"))); $newxml->get_object('labelPromptE') ->set_text(fromutf(gettext("Name of profile"))); my $response = $newxml->get_object('dialogPromptEntry')->run(); if ($response eq "ok") { my $oldprofile = $globals->{'profile'}; $globals->{'profile'} = $newxml->get_object('entryPromptE')->get_text(); firstrun_wizard(); Gtk3->main(); $globals->{'profile'} = $oldprofile; load_config($globals->{'profile'}); } close_dialog($newxml->get_object('dialogPromptEntry')); close_dialog($widgets->{'profile'}->get_object('windowProfileManager')); load_profile_manager(); } sub profile_manager_remove { debug("Removing profile"); my $selection = $widgets->{'profile'}->get_object('treeProfile')->get_selection; if ($selection) { my ($m, $i) = $selection->get_selected; if ($m) { my $profile = $m->get($i, 0); my $confirmxml = load_window("dialogConfirm"); $confirmxml->get_object('labelDelete') ->set_text( gettext("Are you sure you wish to remove the profile \"") . $profile . "\"?"); $confirmxml->get_object('dialogConfirm') ->set_title(gettext("Remove Profile \"") . $profile . "\""); my $confirm = $confirmxml->get_object('dialogConfirm')->run(); if ($confirm eq "ok") { my $query = "DELETE FROM config WHERE profile=\"" . $profile . "\""; do_query($lyricDbh, $query, FALSE); $query = "SELECT DISTINCT profile FROM profiles WHERE profile !=\"" . $profile . "\""; my $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); $query = "UPDATE profiles SET profile=\"" . $row[0] . "\""; do_query($lyricDbh, $query, FALSE); close_dialog($confirmxml->get_object('dialogConfirm')); close_dialog( $widgets->{'profile'}->get_object('windowProfileManager')); load_profile_manager(); } else { close_dialog($confirmxml->get_object('dialogConfirm')); } } } } sub profile_manager_apply { debug("Apply Host<->Profile mapping"); my $store = $widgets->{'profile'}->get_object('treeHosts')->get_model(); my $iter = $store->get_iter_first; while (defined $iter) { my $host = $store->get_value($iter, 0); my $profile = $store->get_value($iter, 1); my $query = "SELECT profile FROM profiles WHERE host='" . $host . "'"; my $sth = do_query($lyricDbh, $query, FALSE); my @row = $sth->fetchrow_array(); if (defined $row[0]) { if ($row[0] ne $profile) { $query = "UPDATE profiles SET profile = '" . $profile . "' WHERE host='" . $host . "'"; $sth = do_query($lyricDbh, $query, FALSE); } } else { $query = "INSERT INTO profiles SET ( profile, host) VALUES ( '" . $profile . "', '" . $host . "')"; $sth = do_query($lyricDbh, $query, FALSE); } my $ret = $store->iter_next($iter); if (!$ret) { undef $iter; } } } sub profile_manager_revert { debug("Revert Host<->Profile mapping"); close_dialog($widgets->{'profile'}->get_object('windowProfileManager')); load_profile_manager(); } sub combo_set_active { my ($combo, $value) = @_; my $id_col = $combo->get_id_column(); if (defined $value) { my $model = $combo->get_model(); my $iter = $model->get_iter_first(); while ($model->get($iter, $id_col) ne $value) { my $ret = $model->iter_next($iter); if (!$ret) { return; } } $combo->set_active_iter($iter); } } lyricue-4.0.12/src/database.c0000664000000000000000000000736313053456656012667 0ustar /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA */ #include "lyricue_display.h" MYSQL *lyricDb = NULL; MYSQL *mediaDb = NULL; MYSQL *bibleDb = NULL; extern GHashTable *config; extern char *dbhostname; extern char *profile; int db_select () { lyricDb = db_connect ("lyricDb", "error"); mediaDb = db_connect ("mediaDb", "error"); bibleDb = db_connect ("bibleDb", "error"); return TRUE; } int db_deselect () { db_disconnect (lyricDb); db_disconnect (mediaDb); db_disconnect (bibleDb); return TRUE; } MYSQL * db_connect (const char *dbname, const char *dberror) { MYSQL *tempDb = mysql_init (NULL); if (tempDb == NULL) { l_debug ("Error %u: %s", mysql_errno (tempDb), mysql_error (tempDb)); g_warning ("Error %u: %s", mysql_errno (tempDb), mysql_error (tempDb)); exit (1); } my_bool reconnect = 1; mysql_options (tempDb, MYSQL_OPT_RECONNECT, &reconnect); if (mysql_real_connect (tempDb, dbhostname, "lyric", "", dbname, 0, NULL, 0) == NULL) { l_debug ("Error %u: %s", mysql_errno (tempDb), mysql_error (tempDb)); g_warning ("Error %u: %s", mysql_errno (tempDb), mysql_error (tempDb)); return NULL; } // Re-run for mysql versions < 5.0.19 mysql_options (tempDb, MYSQL_OPT_RECONNECT, &reconnect); mysql_set_character_set (tempDb, "utf8"); return tempDb; } int db_disconnect (MYSQL * dbconnection) { mysql_close (dbconnection); return TRUE; } void load_configuration () { l_debug ("Loading configuration for Profile:%s",profile); if (config != NULL) g_hash_table_remove_all (config); config = g_hash_table_new (g_str_hash, g_str_equal); MYSQL_ROW row; MYSQL_RES *result; int res = do_query (FALSE, lyricDb, "SELECT config_key,config_value FROM config WHERE profile='%s'", profile); if (res != 0) { return; } result = mysql_store_result (lyricDb); gboolean conf_found = FALSE; while ((row = mysql_fetch_row (result))) { conf_found = TRUE; g_hash_table_insert (config, g_strdup (row[0]), g_strdup (row[1])); l_debug ("Config \"%s\" set to \"%s\"", row[0], row[1]); } if (!conf_found) { l_debug ("No configuration found - load lyricue to setup"); exit (1); } load_font_defaults (); mysql_free_result (result); } int do_query (gboolean silent, MYSQL * dbconnection, const char * format, ...) { if (dbconnection != NULL) { GString *query = g_string_new (NULL); va_list argp; va_start (argp, format); g_string_vprintf (query, format, argp); va_end (argp); if (!silent) l_debug ("SQL: %s", query->str); if (mysql_query (dbconnection, query->str)) { l_debug (_("SQL Error %u: %s"), mysql_errno (dbconnection), mysql_error (dbconnection)); } g_string_free (query, TRUE); return mysql_errno (dbconnection); } else { l_debug("Database not connected"); } return -1; } lyricue-4.0.12/src/Makefile.in0000664000000000000000000006142213053456657013021 0ustar # Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = lyricue_display$(EXEEXT) subdir = src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_bin_SCRIPTS) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_lyricue_display_OBJECTS = lyricue_display.$(OBJEXT) \ database.$(OBJEXT) display.$(OBJEXT) utils.$(OBJEXT) \ bible.$(OBJEXT) avahi.$(OBJEXT) lyricue_display_OBJECTS = $(am_lyricue_display_OBJECTS) am__DEPENDENCIES_1 = lyricue_display_DEPENDENCIES = $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } SCRIPTS = $(dist_bin_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(lyricue_display_SOURCES) DIST_SOURCES = $(lyricue_display_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/build-aux/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AVAHIGLIB_CFLAGS = @AVAHIGLIB_CFLAGS@ AVAHIGLIB_LIBS = @AVAHIGLIB_LIBS@ AVAHI_CFLAGS = @AVAHI_CFLAGS@ AVAHI_LIBS = @AVAHI_LIBS@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CLUTTERGST_CFLAGS = @CLUTTERGST_CFLAGS@ CLUTTERGST_LIBS = @CLUTTERGST_LIBS@ CLUTTERGTK_CFLAGS = @CLUTTERGTK_CFLAGS@ CLUTTERGTK_LIBS = @CLUTTERGTK_LIBS@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@ CLUTTER_LIBS = @CLUTTER_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GSTREAMER_CFLAGS = @GSTREAMER_CFLAGS@ GSTREAMER_LIBS = @GSTREAMER_LIBS@ HELP_DIR = @HELP_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ ITSTOOL = @ITSTOOL@ JSONGLIB_CFLAGS = @JSONGLIB_CFLAGS@ JSONGLIB_LIBS = @JSONGLIB_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XMLLINT = @XMLLINT@ YELP_LC_DIST = @YELP_LC_DIST@ YELP_LC_MEDIA_LINKS = @YELP_LC_MEDIA_LINKS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ -DPACKAGE_SRC_DIR=\""$(srcdir)"\" \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" $(CLUTTER_CFLAGS) \ $(GTK_CFLAGS) $(CLUTTERGTK_CFLAGS) $(CLUTTERGST_CFLAGS) \ $(GSTREAMER_CFLAGS) $(JSONGLIB_CFLAGS) $(AVAHI_CFLAGS) \ $(AVAHIGLIB_CFLAGS) AM_CFLAGS = \ -Wall\ -Wno-deprecated-declarations\ -g dist_bin_SCRIPTS = \ lyricue \ lyricue_remote lyricue_display_SOURCES = \ lyricue_display.c\ lyricue_display.h \ database.c \ database.h \ display.c \ display.h \ utils.c \ utils.h \ i18n.h \ bible.c \ bible.h \ avahi.c \ avahi.h lyricue_display_LDADD = \ $(CLUTTER_LIBS) \ $(GTK_LIBS) \ $(CLUTTERGTK_LIBS) \ $(CLUTTERGST_LIBS) \ $(GSTREAMER_LIBS) \ $(JSONGLIB_LIBS) \ $(AVAHIGLIB_LIBS) \ $(AVAHI_LIBS) all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list lyricue_display$(EXEEXT): $(lyricue_display_OBJECTS) $(lyricue_display_DEPENDENCIES) $(EXTRA_lyricue_display_DEPENDENCIES) @rm -f lyricue_display$(EXEEXT) $(AM_V_CCLD)$(LINK) $(lyricue_display_OBJECTS) $(lyricue_display_LDADD) $(LIBS) install-dist_binSCRIPTS: $(dist_bin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-dist_binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/avahi.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bible.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/database.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/display.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lyricue_display.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utils.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) $(SCRIPTS) installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-dist_binSCRIPTS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-dist_binSCRIPTS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ install-data install-data-am install-dist_binSCRIPTS \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-binPROGRAMS uninstall-dist_binSCRIPTS .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: lyricue-4.0.12/src/database.h0000664000000000000000000000205613053456656012666 0ustar /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA */ #include #include #include int db_select (); int db_deselect (); MYSQL* db_connect (const char *dbname, const char *dberror); int db_disconnect (MYSQL *dbconnection); void load_configuration (); void save_configuration (); int do_query(gboolean silent, MYSQL *dbconnection, const gchar* format, ...); lyricue-4.0.12/src/lyricue_display.h0000664000000000000000000000701113053456656014317 0ustar /*************************************************************************** * lyricue_display.h * * Tue Jul 20 15:54:37 2010 * Copyright 2010 Chris Debenham * ****************************************************************************/ /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA */ #ifdef HAVE_CONFIG_H #include "config.h" #endif /* HAVE_CONFIG_H */ #include #include #include #include #include #if GTK_MAJOR_VERSION == 3 #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "i18n.h" #include "database.h" #include "display.h" #include "bible.h" #include "utils.h" #include "avahi.h" gboolean new_connection(GSocketService *service, GSocketConnection *connection, GObject *source_object, gpointer user_data); gboolean network_read(GIOChannel *source, GIOCondition cond, gpointer data); void handle_command (GIOChannel *source, const char *command); void do_media (const char* options); void do_fade (const char* options); void do_blur (const char* options); void do_preview (const char* options); GString * do_status (); GString * do_snapshot(const char* options); void do_dbsnapshot(const char* options); void do_plsnapshot(const char* options); void do_reconfig(); void do_backdrop(const char* options); void unblank(); void do_blank(const char* options); void do_change_to_db(const char* options); void do_next_point(const char* options); void do_loopparent(const char* options); void do_display(const char* options, const int quick_show); void do_osd(const char* options); void do_save(const char* options); void do_profile_change(const char* options); GString * do_query_json(const char* options); gboolean update_tracker(); void update_miniview (const char *command); #define BLANK_NONE 0 #define BLANK_TEXT 1 #define BLANK_BG 2 // Transition directions #define NONE 0 #define WAIT 1 #define UP 2 #define DOWN 4 #define RIGHT 8 #define LEFT 16 #define X_AXIS 32 #define Y_AXIS 64 #define Z_AXIS 128 #define NUM_TRANS 8 // Transition types #define DEFAULT 0 #define NOTRANS 1 #define FADE 2 #define SLIDE_TEXT 3 #define ROTATE 4 #define RANDOM 5 #define NO_EFFECT 65536 //(NOTRANS >> NUM_TRANS) >> NUM_TRANS // Server types #define NORMAL_SERVER 0 #define PREVIEW_SERVER 1 #define MINIVIEW_SERVER 2 #define SIMPLE_SERVER 3 #define HEADLESS_SERVER 4 lyricue-4.0.12/src/display.c0000664000000000000000000015712613053456656012573 0ustar /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA */ #include "lyricue_display.h" extern GHashTable *config; extern gboolean windowed; extern gchar *dbhostname; extern gchar *geometry; extern gint blanked_state; extern gchar *default_bg; extern gchar *current_bg; extern MYSQL *mediaDb; extern unsigned long windowid; extern int server_mode; extern MYSQL *lyricDb; extern int current_item; extern gchar *server_type; const ClutterColor black_colour = { 0x00, 0x00, 0x00, 0xff }; gchar *maintext_fgcol = "white"; gchar *maintext_bgcol = "black"; gchar *headtext_fgcol = "white"; gchar *headtext_bgcol = "black"; gchar *foottext_fgcol = "white"; gchar *foottext_bgcol = "black"; gchar *maintext_fgcol_old = "white"; gchar *maintext_bgcol_old = "black"; gchar *headtext_fgcol_old = "white"; gchar *headtext_bgcol_old = "black"; gchar *foottext_fgcol_old = "white"; gchar *foottext_bgcol_old = "black"; gchar *maintext_font = ""; gchar *headtext_font = ""; gchar *foottext_font = ""; gchar *osdtext_font = ""; GtkWidget *window = NULL; GtkWidget *clutter_widget = NULL; ClutterActor *stage = NULL; ClutterActor *actors = NULL; ClutterActor *maintext = NULL; ClutterActor *maintext_old = NULL; ClutterActor *headtext = NULL; ClutterActor *headtext_old = NULL; ClutterActor *foottext = NULL; ClutterActor *foottext_old = NULL; ClutterActor *background = NULL; ClutterActor *background_old = NULL; #if CLUTTER_GST_MAJOR_VERSION >= 3 ClutterContent *background_video = NULL; ClutterGstPlayback *gstplayer = NULL; #endif ClutterActor *osdtext = NULL; ClutterActor *osdtext_bg = NULL; ClutterShader *shader = NULL; gchar *maintext_text = NULL; gchar *headtext_text = NULL; gchar *foottext_text = NULL; gchar *backdrop_text = NULL; gchar *osd_text = NULL; gfloat stage_width = 0; gfloat stage_height = 0; gfloat window_width = 0; gfloat window_height = 0; gfloat text_maxwidth = 0; gfloat text_maxheight = 0; guint bg_is_video = 0; guint cursor_timeout = 0; gboolean video_loop = FALSE; // Setup shaders typedef struct { gchar *name; gchar *source; } ShaderSource; static ShaderSource shaders[] = { {"box-blur", "uniform sampler2D tex;" "uniform float x_step, y_step;" "vec4 get_rgba_rel(sampler2D tex, float dx, float dy)" "{" " return texture2D (tex, gl_TexCoord[0].st " " + vec2(dx, dy) * 2.0);" "}" "void main (){" " vec4 color = texture2D (tex, vec2(gl_TexCoord[0]));" " float count = 1.0;" " color += get_rgba_rel (tex, -x_step, -y_step); count++;" " color += get_rgba_rel (tex, -x_step, 0.0); count++;" " color += get_rgba_rel (tex, -x_step, y_step); count++;" " color += get_rgba_rel (tex, 0.0, -y_step); count++;" " color += get_rgba_rel (tex, 0.0, 0.0); count++;" " color += get_rgba_rel (tex, 0.0, y_step); count++;" " color += get_rgba_rel (tex, x_step, -y_step); count++;" " color += get_rgba_rel (tex, x_step, 0.0); count++;" " color += get_rgba_rel (tex, x_step, y_step); count++;" " color = color / count;" " gl_FragColor = color;" " gl_FragColor = gl_FragColor * gl_Color;" "}"}, /* Terminating NULL sentinel */ {NULL, NULL} }; int create_main_window (int argc, char *argv[]) { int ret = gtk_clutter_init (&argc, &argv); if (!ret) { l_debug("Unable to initialise clutter"); return EXIT_FAILURE; } clutter_gst_init (&argc, &argv); stage_width = atof ((gchar *) g_hash_table_lookup (config, "Width")); stage_height = atof ((gchar *) g_hash_table_lookup (config, "Height")); if (geometry == NULL) { geometry = (gchar *) g_hash_table_lookup (config, "GeometryOverride"); } if (windowid == 0) { window = gtk_window_new (GTK_WINDOW_TOPLEVEL); gchar *title = g_strconcat("Lyricue Display - ", extra_data, NULL); gtk_window_set_title(GTK_WINDOW(window), title); g_free(title); clutter_widget = gtk_clutter_embed_new (); gtk_container_add (GTK_CONTAINER (window), clutter_widget); gtk_widget_show_all (clutter_widget); if (!windowed) gtk_window_fullscreen (GTK_WINDOW (window)); int base_height=200; gtk_widget_set_size_request(GTK_WIDGET(clutter_widget),base_height*stage_width/stage_height,base_height); if (geometry != NULL && (g_utf8_strlen (geometry, 10) > 0)) { if (!gtk_window_parse_geometry (GTK_WINDOW (window), geometry)) { l_debug ("Failed to parse geometry '%s'", geometry); } else { l_debug ("Geometry '%s'", geometry); } } gtk_widget_show_all (window); } else { window = gtk_plug_new (windowid); clutter_widget = gtk_clutter_embed_new (); gtk_container_add (GTK_CONTAINER (window), clutter_widget); gtk_widget_show_all (window); } stage = gtk_clutter_embed_get_stage (GTK_CLUTTER_EMBED (clutter_widget)); actors = clutter_group_new (); clutter_container_add (CLUTTER_CONTAINER (stage), actors, NULL); clutter_stage_set_color (CLUTTER_STAGE (stage), &black_colour); default_bg = (gchar *) g_hash_table_lookup (config, "BGImage"); if (server_mode != SIMPLE_SERVER) { change_backdrop (default_bg, TRUE, NO_EFFECT); } double window_scale_w = (double) clutter_actor_get_width (stage) / (double) stage_width; double window_scale_h = (double) clutter_actor_get_height (stage) / (double) stage_height; clutter_actor_set_scale (actors, window_scale_w, window_scale_h); text_maxheight = stage_height - (atoi ((gchar *) g_hash_table_lookup (config, "OverscanV")) * 2); text_maxwidth = stage_width - (atoi ((gchar *) g_hash_table_lookup (config, "OverscanH")) * 2); l_debug ("Creating main window at %dx%d", (int) clutter_actor_get_width (stage), (int) clutter_actor_get_height (stage)); maintext = clutter_group_new (); maintext_old = clutter_group_new (); headtext = clutter_group_new (); headtext_old = clutter_group_new (); foottext = clutter_group_new (); foottext_old = clutter_group_new (); clutter_container_add (CLUTTER_CONTAINER (actors), maintext, NULL); clutter_container_add (CLUTTER_CONTAINER (actors), headtext, NULL); clutter_container_add (CLUTTER_CONTAINER (actors), foottext, NULL); clutter_container_add (CLUTTER_CONTAINER (actors), maintext_old, NULL); clutter_container_add (CLUTTER_CONTAINER (actors), headtext_old, NULL); clutter_container_add (CLUTTER_CONTAINER (actors), foottext_old, NULL); clutter_actor_show_all (stage); // Setup events g_signal_connect (stage, "destroy", G_CALLBACK (exit), NULL); g_signal_connect (stage, "event", G_CALLBACK (input_cb), NULL); g_signal_connect (stage, "notify::width", G_CALLBACK (size_change), NULL); g_signal_connect (stage, "notify::height", G_CALLBACK (size_change), NULL); clutter_set_font_flags (CLUTTER_FONT_MIPMAPPING); shader = clutter_shader_new (); GError *error; error = NULL; gint shader_no = 0; clutter_shader_set_fragment_source (shader, shaders[shader_no].source, -1); clutter_shader_compile (shader, &error); if (error) { g_print ("unable to load shaders[%d] named '%s': %s\n", shader_no, shaders[shader_no].name, error->message); g_error_free (error); return EXIT_FAILURE; } return TRUE; } void set_maintext (const gchar * text, int transition, gboolean wrap) { l_debug ("Setting maintext"); g_free(maintext_text); maintext_text=g_strdup(text); if (g_strcmp0(server_type, "headless") == 0) { return; } if (!G_IS_OBJECT (maintext) || g_strcmp0 (g_object_get_data (G_OBJECT (maintext), "text"), text) == 0) { l_debug ("No change to text - returning"); return; } // Finish off old animations if (CLUTTER_IS_ANIMATION (clutter_actor_get_animation (maintext))) clutter_animation_completed (clutter_actor_get_animation (maintext)); if (CLUTTER_IS_ANIMATION (clutter_actor_get_animation (maintext_old))) clutter_animation_completed (clutter_actor_get_animation (maintext_old)); ClutterActor *tmp = maintext_old; maintext_old = maintext; maintext = tmp; g_object_set_data (G_OBJECT (maintext), "text", (gpointer) text); clear_group (maintext); create_outlined_text (maintext, text, maintext_font, maintext_fgcol, maintext_bgcol, wrap, FALSE); gchar *horiloc = (gchar *) g_hash_table_lookup (config, "HorizontalLocation"); gchar *vertloc = (gchar *) g_hash_table_lookup (config, "VerticalLocation"); gfloat final_x = stage_width / 2; gfloat final_y = stage_height / 2; if (horiloc[0] == 'L') { final_x = clutter_actor_get_width (maintext) / 2; } else if (horiloc[0] == 'R') { final_x = stage_width - (clutter_actor_get_width (maintext) / 2); } if (vertloc[0] == 'T') { final_y = (clutter_actor_get_height (maintext) / 2) + clutter_actor_get_height (foottext); } else if (vertloc[0] == 'B') { final_y = stage_height - ((clutter_actor_get_height (maintext) / 2) + clutter_actor_get_height (foottext)); } clutter_actor_set_anchor_point_from_gravity (maintext, CLUTTER_GRAVITY_CENTER); do_transition (maintext, maintext_old, transition, final_x, final_y); clutter_actor_raise_top (maintext); } void set_headtext (const gchar * text, int transition, gboolean wrap) { g_free(headtext_text); headtext_text=g_strdup(text); if (g_strcmp0(server_type, "headless") == 0) { return; } if (!G_IS_OBJECT (headtext) || g_strcmp0 (g_object_get_data (G_OBJECT (headtext), "text"), text) == 0) { return; } g_object_set_data (G_OBJECT (headtext_old), "text", (gpointer) text); ClutterActor *tmp = headtext_old; headtext_old = headtext; headtext = tmp; clear_group (headtext); create_outlined_text (headtext, text, headtext_font, headtext_fgcol, headtext_bgcol, wrap, TRUE); clutter_actor_set_anchor_point_from_gravity (headtext, CLUTTER_GRAVITY_NORTH); clutter_actor_set_position (headtext, stage_width / 2, 0); clear_group (headtext_old); } void set_foottext (const gchar * text, int transition, gboolean wrap) { g_free(foottext_text); foottext_text=g_strdup(text); if (g_strcmp0(server_type, "headless") == 0) { return; } if (!G_IS_OBJECT (foottext) || g_strcmp0 (g_object_get_data (G_OBJECT (foottext), "text"), text) == 0) { return; } g_object_set_data (G_OBJECT (foottext_old), "text", (gpointer) text); ClutterActor *tmp = foottext_old; foottext_old = foottext; foottext = tmp; clear_group (foottext); create_outlined_text (foottext, text, foottext_font, foottext_fgcol, foottext_bgcol, wrap, TRUE); clutter_actor_set_anchor_point_from_gravity (foottext, CLUTTER_GRAVITY_SOUTH); clutter_actor_set_position (foottext, stage_width / 2, stage_height); clear_group (foottext_old); } void set_osd (int speed, const gchar * text) { l_debug ("Setting OSD at %d speed", speed); g_free(osd_text); osd_text=g_strdup(text); if (g_strcmp0(server_type, "headless") == 0) { return; } if (osdtext != NULL) { clutter_actor_destroy (osdtext); clutter_actor_destroy (osdtext_bg); osdtext = NULL; osdtext_bg = NULL; } osdtext = clutter_group_new (); if (text == NULL || (g_utf8_strlen (text, 10) == 0)) { return; } ClutterColor *bgcolour = clutter_color_new (0x00, 0x00, 0x00, 0xA0); clutter_color_from_string (bgcolour, maintext_bgcol); create_outlined_text (osdtext, text, osdtext_font, maintext_fgcol, maintext_bgcol, FALSE, FALSE); clutter_actor_set_anchor_point_from_gravity (osdtext, CLUTTER_GRAVITY_CENTER); osdtext_bg = clutter_rectangle_new_with_color (bgcolour); gfloat osd_height = clutter_actor_get_height (osdtext); gfloat osd_width = clutter_actor_get_width (osdtext); clutter_actor_set_size (osdtext_bg, stage_width, osd_height + 5); clutter_actor_set_position (osdtext_bg, 0, stage_height - osd_height + 5); clutter_actor_set_opacity (osdtext_bg, 0x80); clutter_container_add (CLUTTER_CONTAINER (actors), osdtext_bg, osdtext, NULL); clutter_actor_raise_top (osdtext_bg); clutter_actor_raise_top (osdtext); gfloat scale = osd_width / stage_width; if (scale < 1) scale = 1; gfloat duration = scale * speed; ClutterPath *osd_path = clutter_path_new (); clutter_path_add_move_to (osd_path, stage_width + (osd_width / 2), stage_height - (osd_height / 2) + 3); clutter_path_add_line_to (osd_path, -(osd_width / 2), stage_height - (osd_height / 2) + 3); ClutterTimeline *osd_timeline = clutter_timeline_new (duration); ClutterBehaviour *osd_behaviour = clutter_behaviour_path_new (clutter_alpha_new_full (osd_timeline, CLUTTER_LINEAR), osd_path); clutter_behaviour_apply (osd_behaviour, osdtext); clutter_timeline_set_loop (osd_timeline, TRUE); clutter_timeline_start (osd_timeline); } void create_outlined_text (ClutterActor * group, const gchar * text, const gchar * font, const gchar * text_colour, const gchar * shadow_colour, gboolean wrap, gboolean force_centre) { ClutterActor *textline[6]; int i; clear_group (group); if (text == NULL) text = g_strdup (""); // Set Colours ClutterColor *fgcolour = clutter_color_new (0xFF, 0xFF, 0xFF, 0xFF); ClutterColor *bgcolour = clutter_color_new (0x00, 0x00, 0x00, 0xA0); clutter_color_from_string (bgcolour, shadow_colour); bgcolour->alpha = 0xA0; clutter_color_from_string (fgcolour, text_colour); // Get justification gchar *justify = (gchar *) g_hash_table_lookup (config, "Justification"); // Get shadow offset int shadow_offset = atoi ((gchar *) g_hash_table_lookup (config, "ShadowSize")); for (i = 0; i <= 5; i++) { if (i == 2) { textline[i] = clutter_text_new_full (font, text, fgcolour); } else { textline[i] = clutter_text_new_full (font, text, bgcolour); } clutter_text_set_line_wrap (CLUTTER_TEXT (textline[i]), wrap); if (justify[0] == 'L' && !force_centre) { clutter_text_set_line_alignment (CLUTTER_TEXT (textline[i]), PANGO_ALIGN_LEFT); } else if (justify[0] == 'R' && !force_centre) { clutter_text_set_line_alignment (CLUTTER_TEXT (textline[i]), PANGO_ALIGN_RIGHT); } else { clutter_text_set_line_alignment (CLUTTER_TEXT (textline[i]), PANGO_ALIGN_CENTER); } clutter_text_set_use_markup (CLUTTER_TEXT (textline[i]), TRUE); clutter_actor_set_anchor_point_from_gravity (textline[i], CLUTTER_GRAVITY_NORTH_WEST); clutter_container_add (CLUTTER_CONTAINER (group), textline[i], NULL); if (i == 5) { clutter_actor_set_position (textline[i], 3 + shadow_offset, 3 + shadow_offset); } else { clutter_actor_set_position (textline[i], ((i * 2) % 3), ((i * 2) / 3)); } if (clutter_actor_get_width (textline[i]) > text_maxwidth) { clutter_actor_set_width (textline[i], text_maxwidth); } } clutter_actor_raise_top (textline[2]); clutter_actor_show_all (group); // return group; } void change_backdrop (const gchar * id, gboolean loop, gint transition) { if ((id == NULL) || (strlen (id) == 0)) { return; } l_debug ("change backdrop to %s", id); g_free(backdrop_text); backdrop_text=g_strdup(id); if (g_strcmp0(server_type, "headless") == 0) { return; } if (g_strcmp0 (id, current_bg) == 0) { l_debug ("Backdrop ID same - not changing"); return; } //reset_timer(video_timer); gchar **line = g_strsplit (id, ";", 2); if ((line[1] != NULL) && (strlen (line[1]) == 0)) { return; } g_free (current_bg); current_bg = g_strdup (id); background_old = destroy_actor (background_old); background_old = background; background = NULL; #if CLUTTER_GST_MAJOR_VERSION >= 3 if (gstplayer != NULL) { clutter_gst_player_set_playing(CLUTTER_GST_PLAYER(gstplayer),FALSE); } #endif if (g_ascii_strncasecmp (line[0], "dvd", 3) == 0) { line[1] = line[0]; line[0] = "dvd"; } else if (strlen (line[0]) > 5) { line[0] = "dir"; line[1] = g_strdup (id); } else if (line[1] == NULL) { line[1] = line[0]; line[0] = "dir"; } if (g_strcmp0 (line[0], "db") == 0) { do_query (FALSE, mediaDb, "SELECT format, description, data, LENGTH(data) FROM media WHERE id=%s", line[1]); MYSQL_ROW row; MYSQL_RES *result; result = mysql_store_result (mediaDb); row = mysql_fetch_row (result); if (row != NULL) { if (g_strcmp0 (row[0], "bg") == 0) { l_debug ("Changing backdrop colour to %s", row[1]); if (bg_is_video) g_source_remove (bg_is_video); bg_is_video = 0; ClutterColor *bgcolour = clutter_color_new (0, 0, 0, 0); clutter_color_from_string (bgcolour, row[1]); background = clutter_rectangle_new_with_color (bgcolour); clutter_actor_set_size (background, stage_width, stage_height); clutter_actor_set_position (background, 0, 0); clutter_color_free (bgcolour); } else { l_debug ("Changing backdrop to dbimage"); gchar *dbimage_filename = NULL; gint fd = g_file_open_tmp ("lyricue-tmp.XXXXXX", &dbimage_filename, NULL); if (fd > 0) { if (bg_is_video) g_source_remove (bg_is_video); FILE *file = fdopen (fd, "w"); fwrite (row[2], atoi (row[3]), 1, file); fclose (file); close (fd); bg_is_video = 0; background = clutter_texture_new_from_file (dbimage_filename, NULL); unlink (dbimage_filename); g_free (dbimage_filename); clutter_texture_set_keep_aspect_ratio (CLUTTER_TEXTURE (background), TRUE); gint w, h; clutter_texture_get_base_size (CLUTTER_TEXTURE (background), &w, &h); if (((gfloat) w / (gfloat) h) < (stage_width / stage_height)) { clutter_actor_set_size (background, (w * (stage_height / h)), stage_height); } else { clutter_actor_set_size (background, stage_width, (h * (stage_width / w))); } clutter_actor_set_anchor_point_from_gravity (background, CLUTTER_GRAVITY_CENTER); clutter_actor_set_position (background, stage_width / 2, stage_height / 2); } } } mysql_free_result (result); } else if (g_strcmp0 (line[0], "solid") == 0) { gchar **col = g_strsplit (line[1], ":", 2); l_debug ("Changing backdrop colour to %s", col[0]); if (bg_is_video) g_source_remove (bg_is_video); bg_is_video = 0; ClutterColor *bgcolour = clutter_color_new (0, 0, 0, 0); clutter_color_from_string (bgcolour, col[0]); background = clutter_rectangle_new_with_color (bgcolour); clutter_actor_set_size (background, stage_width, stage_height); clutter_actor_set_position (background, 0, 0); clutter_color_free (bgcolour); g_free (col); } else if (g_strcmp0 (line[0], "dir") == 0) { GFileInfo *info = g_file_query_info (g_file_new_for_path (line[1]), G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE, G_FILE_QUERY_INFO_NONE, NULL, NULL); if (!info) { l_debug ("Backdrop not loadable:%s", line[1]); background = background_old; background_old = NULL; return; } if (g_content_type_is_a (g_file_info_get_content_type (info), "video/*") || g_content_type_is_a (g_file_info_get_content_type (info), "audio/*")) { l_debug ("Backdrop is media"); video_loop = loop; play_video(line[1], FALSE); } else if (g_content_type_is_a (g_file_info_get_content_type (info), "image/*")) { l_debug ("Backdrop is an image"); if (bg_is_video) g_source_remove (bg_is_video); bg_is_video = 0; background = clutter_texture_new_from_file (line[1], NULL); clutter_texture_set_keep_aspect_ratio (CLUTTER_TEXTURE (background), TRUE); gint w, h; clutter_texture_get_base_size (CLUTTER_TEXTURE (background), &w, &h); if (((gfloat) w / (gfloat) h) < (stage_width / stage_height)) { clutter_actor_set_size (background, (w * (stage_height / h)), stage_height); } else { clutter_actor_set_size (background, stage_width, (h * (stage_width / w))); } clutter_actor_set_anchor_point_from_gravity (background, CLUTTER_GRAVITY_CENTER); clutter_actor_set_position (background, stage_width / 2, stage_height / 2); } else { l_debug ("Unknown Filetype %s", g_file_info_get_content_type (info)); return; } g_object_unref (info); } else if (g_strcmp0 (line[0], "dvd") == 0) { l_debug ("playing DVD Video"); video_loop = loop; play_video("dvd://", TRUE); } else if (g_strcmp0 (line[0], "uri") == 0) { l_debug ("playing direct uri %s", line[1]); video_loop = loop; play_video(line[1], TRUE); } if (background) { clutter_container_add (CLUTTER_CONTAINER (actors), background, NULL); clutter_actor_lower_bottom (background); } else { background = background_old; background_old = NULL; clutter_actor_lower_bottom (background); } maintext_fgcol_old = g_strdup (maintext_fgcol); maintext_bgcol_old = g_strdup (maintext_bgcol); headtext_fgcol_old = g_strdup (headtext_fgcol); headtext_bgcol_old = g_strdup (headtext_bgcol); foottext_fgcol_old = g_strdup (foottext_fgcol); foottext_bgcol_old = g_strdup (foottext_bgcol); // Set text colours if ((g_strcmp0 (maintext_fgcol, (gchar *) g_hash_table_lookup (config, "Colour")) != 0) || (g_strcmp0 (maintext_bgcol, (gchar *) g_hash_table_lookup (config, "ShadowColour")) != 0)) { maintext_fgcol = (gchar *) g_hash_table_lookup (config, "Colour"); maintext_bgcol = (gchar *) g_hash_table_lookup (config, "ShadowColour"); headtext_fgcol = (gchar *) g_hash_table_lookup (config, "Colour"); headtext_bgcol = (gchar *) g_hash_table_lookup (config, "ShadowColour"); foottext_fgcol = (gchar *) g_hash_table_lookup (config, "Colour"); foottext_bgcol = (gchar *) g_hash_table_lookup (config, "ShadowColour"); } do_query (FALSE, mediaDb, "SELECT textcolour, shadowcolour FROM media WHERE CONCAT(\"db;\",id)=\"%s\" OR (format=\"file\" AND category=\"%s\")", current_bg, line[1]); MYSQL_RES *result; MYSQL_ROW row; result = mysql_store_result (mediaDb); row = mysql_fetch_row (result); if (row != NULL) { if ((g_strcmp0 (maintext_fgcol, row[0]) != 0) || (g_strcmp0 (maintext_bgcol, row[1]) != 0)) { if (strlen (row[0]) > 0) { maintext_fgcol = g_strdup (row[0]); headtext_fgcol = g_strdup (row[0]); foottext_fgcol = g_strdup (row[0]); } if (strlen (row[1]) > 0) { maintext_bgcol = g_strdup (row[1]); headtext_bgcol = g_strdup (row[1]); foottext_bgcol = g_strdup (row[1]); } } } mysql_free_result (result); if (g_strcmp0 (maintext_bgcol, maintext_bgcol_old) != 0) { ClutterColor *fgcolour = clutter_color_new (0xFF, 0xFF, 0xFF, 0xFF); ClutterColor *bgcolour = clutter_color_new (0x00, 0x00, 0x00, 0xA0); if (server_mode!=SIMPLE_SERVER){ clutter_color_from_string (bgcolour, maintext_bgcol); bgcolour->alpha = 0xA0; clutter_color_from_string (fgcolour, maintext_fgcol); } int n_kids = clutter_group_get_n_children(CLUTTER_GROUP(maintext)); int i; for (i = 0; itype) { case CLUTTER_BUTTON_RELEASE: ignoremouse = (gchar *) g_hash_table_lookup (config, "IgnoreMouse"); if (ignoremouse != NULL && atoi(ignoremouse) == 1) { break; } switch (clutter_event_get_button (event)) { case 1: handle_command (NULL, "display:next_page:"); break; case 2: handle_command (NULL, "display:prev_song:"); break; case 3: handle_command (NULL, "display:prev_page:"); break; default: break; } break; case CLUTTER_KEY_PRESS: switch (clutter_event_get_key_symbol (event)) { case CLUTTER_KEY_Q: case CLUTTER_KEY_Escape: close_log (); clear_group (stage); if (server_mode == NORMAL_SERVER) { clutter_main_quit (); } else { gtk_main_quit(); } handled = TRUE; break; case CLUTTER_KEY_Left: case CLUTTER_KEY_KP_Left: case CLUTTER_KEY_Page_Up: handle_command (NULL, "display:prev_page:"); break; case CLUTTER_KEY_Right: case CLUTTER_KEY_KP_Right: case CLUTTER_KEY_Page_Down: handle_command (NULL, "display:next_page:"); break; case CLUTTER_KEY_Up: case CLUTTER_KEY_KP_Up: handle_command (NULL, "display:prev_song:"); break; case CLUTTER_KEY_Down: case CLUTTER_KEY_KP_Down: handle_command (NULL, "display:next_song:"); break; case CLUTTER_KEY_0: case CLUTTER_KEY_KP_0: case CLUTTER_KEY_KP_Insert: case CLUTTER_KEY_c: case CLUTTER_KEY_x: if (blanked_state == BLANK_NONE) { handle_command (NULL, "blank::"); } else { handle_command (NULL, "display:current:"); } break; case CLUTTER_KEY_b: if (blanked_state == BLANK_NONE) { handle_command (NULL, "blank:solid;black:"); } else { handle_command (NULL, "display:current:"); } break; case CLUTTER_KEY_p: case CLUTTER_KEY_space: handle_command (NULL, "media:pause:"); break; case CLUTTER_KEY_1: case CLUTTER_KEY_KP_1: handle_command (NULL, "display:page:1"); break; case CLUTTER_KEY_2: case CLUTTER_KEY_KP_2: handle_command (NULL, "display:page:2"); break; case CLUTTER_KEY_3: case CLUTTER_KEY_KP_3: handle_command (NULL, "display:page:3"); break; case CLUTTER_KEY_4: case CLUTTER_KEY_KP_4: handle_command (NULL, "display:page:4"); break; case CLUTTER_KEY_5: case CLUTTER_KEY_KP_5: handle_command (NULL, "display:page:5"); break; case CLUTTER_KEY_6: case CLUTTER_KEY_KP_6: handle_command (NULL, "display:page:6"); break; case CLUTTER_KEY_7: case CLUTTER_KEY_KP_7: handle_command (NULL, "display:page:7"); break; case CLUTTER_KEY_8: case CLUTTER_KEY_KP_8: handle_command (NULL, "display:page:8"); break; case CLUTTER_KEY_9: case CLUTTER_KEY_KP_9: handle_command (NULL, "display:page:9"); break; default: l_debug ("Unknown key"); break; } break; case CLUTTER_MOTION: clutter_stage_show_cursor (CLUTTER_STAGE (stage)); /*if (cursor_timeout) g_source_remove (cursor_timeout); cursor_timeout = g_timeout_add_seconds (3, (GSourceFunc) hide_cursor, NULL);*/ break; default: break; } } else { if (event->type == CLUTTER_KEY_PRESS) { switch (clutter_event_get_key_symbol (event)) { case CLUTTER_KEY_Q: case CLUTTER_KEY_Escape: close_log (); clear_group (stage); if (server_mode == NORMAL_SERVER) { clutter_main_quit (); } else { gtk_main_quit(); } handled = TRUE; break; default: break; } } } return handled; } void size_change (ClutterActor * myactor) { gfloat new_window_width, new_window_height; clutter_actor_get_size (stage, &new_window_width, &new_window_height); if (((int) new_window_width != window_width) || ((int) new_window_height != window_height)) { window_width = (int) new_window_width; window_height = (int) new_window_height; gfloat window_scale_w = new_window_width / stage_width; gfloat window_scale_h = new_window_height / stage_height; l_debug ("Resizing main window to %.0fx%.0f", new_window_width, new_window_height); clutter_actor_set_scale (actors, window_scale_w, window_scale_h); } } void loop_video (ClutterActor * video) { if (video_loop) { #if CLUTTER_GST_MAJOR_VERSION >= 3 clutter_gst_playback_set_progress (gstplayer, 0.0); clutter_gst_player_set_playing (CLUTTER_GST_PLAYER(gstplayer), TRUE); #else clutter_media_set_progress (CLUTTER_MEDIA (video), 0.0); clutter_media_set_playing (CLUTTER_MEDIA (video), 1); #endif } else { if (bg_is_video) g_source_remove (bg_is_video); } } void media_pause () { if (bg_is_video && (server_mode == NORMAL_SERVER)) { #if CLUTTER_GST_MAJOR_VERSION >= 3 clutter_gst_player_set_playing (CLUTTER_GST_PLAYER(gstplayer), !clutter_gst_player_get_playing (CLUTTER_GST_PLAYER(gstplayer))); #else clutter_media_set_playing (CLUTTER_MEDIA (background), !clutter_media_get_playing (CLUTTER_MEDIA (background))); #endif } } void media_skip (gint duration) { if (bg_is_video) { l_debug ("Skipping to %d", duration); #if CLUTTER_GST_MAJOR_VERSION >= 3 gst_element_seek ( clutter_gst_player_get_pipeline (clutter_gst_content_get_player((ClutterGstContent *)background_video)), 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH, GST_SEEK_TYPE_SET, duration * GST_SECOND, 0, 0); #elif CLUTTER_GST_MAJOR_VERSION >= 1 gst_element_seek (clutter_gst_video_texture_get_pipeline (CLUTTER_GST_VIDEO_TEXTURE (background)), 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH, GST_SEEK_TYPE_SET, duration * GST_SECOND, 0, 0); #else gst_element_seek (clutter_gst_video_texture_get_playbin (CLUTTER_GST_VIDEO_TEXTURE (background)), 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH, GST_SEEK_TYPE_SET, duration * GST_SECOND, 0, 0); #endif } } void load_font_defaults () { maintext_font = (gchar *) g_hash_table_lookup (config, "Main"); headtext_font = (gchar *) g_hash_table_lookup (config, "Header"); foottext_font = (gchar *) g_hash_table_lookup (config, "Footer"); osdtext_font = (gchar *) g_hash_table_lookup (config, "OSD"); maintext_fgcol = (gchar *) g_hash_table_lookup (config, "Colour"); headtext_fgcol = (gchar *) g_hash_table_lookup (config, "Colour"); foottext_fgcol = (gchar *) g_hash_table_lookup (config, "Colour"); maintext_bgcol = (gchar *) g_hash_table_lookup (config, "ShadowColour"); headtext_bgcol = (gchar *) g_hash_table_lookup (config, "ShadowColour"); foottext_bgcol = (gchar *) g_hash_table_lookup (config, "ShadowColour"); } void clear_group (ClutterActor * actor) { if (actor != NULL) { if (CLUTTER_IS_GROUP (actor)) { clutter_group_remove_all (CLUTTER_GROUP (actor)); } } } ClutterActor* destroy_actor (ClutterActor * actor) { if (actor != NULL) { if (CLUTTER_IS_MEDIA (actor)) { clutter_media_set_playing (CLUTTER_MEDIA (actor), FALSE); } if (CLUTTER_IS_ACTOR (actor)) { clutter_actor_destroy_all_children (actor); clutter_actor_destroy (actor); actor = NULL; } } return NULL; } void do_transition (ClutterActor * new, ClutterActor * old, int transition, gfloat final_x, gfloat final_y) { gfloat new_start_x, new_start_y, new_final_x, new_final_y; gfloat old_start_x, old_start_y, old_final_x, old_final_y; if (CLUTTER_IS_ACTOR (new)) clutter_actor_get_position (new, &new_start_x, &new_start_y); if (CLUTTER_IS_ACTOR (old)) clutter_actor_get_position (old, &old_start_x, &old_start_y); old_final_x = old_start_x; old_final_y = old_start_y; new_start_x = final_x; new_start_y = final_y; new_final_x = final_x; new_final_y = final_y; // Transition int out_direction = transition % (2 << NUM_TRANS); transition = transition >> NUM_TRANS; int in_direction = transition % (2 << NUM_TRANS); int effect = transition >> NUM_TRANS; if (effect == DEFAULT) { gchar *deftrans = (gchar *) g_hash_table_lookup (config, "DefaultTransition"); if (deftrans[0] == 'F') { effect = FADE; } else { effect = NOTRANS; } } else if (effect == RANDOM) { effect = (rand() % (RANDOM-2)) + 2; in_direction = rand() % (2 << NUM_TRANS); out_direction = rand() % (2 << NUM_TRANS); } // Default positioning clutter_actor_set_position (new, new_final_x, new_final_y); clutter_actor_set_rotation (new, CLUTTER_X_AXIS, 0, 0, 0, 0); clutter_actor_set_rotation (new, CLUTTER_Y_AXIS, 0, 0, 0, 0); clutter_actor_set_rotation (new, CLUTTER_Z_AXIS, 0, 0, 0, 0); clutter_actor_set_opacity (new, 0xff); switch (effect) { case SLIDE_TEXT: if (in_direction & UP) { new_start_y = new_start_y * 3; } else if (in_direction & DOWN) { new_start_y = -new_start_y; } if (in_direction & LEFT) { new_start_x = new_start_x * 3; } else if (in_direction & RIGHT) { new_start_x = -new_start_x; } clutter_actor_set_position (new, new_start_x, new_start_y); clutter_actor_animate (new, CLUTTER_LINEAR, 500, "y", new_final_y, "x", new_final_x, NULL); if (out_direction & UP) { old_final_y = -old_final_y; } else if (out_direction & DOWN) { old_final_y = old_final_y * 3; } if (out_direction & LEFT) { old_final_x = -old_final_x; } else if (out_direction & RIGHT) { old_final_x = old_final_x * 3; } clutter_actor_set_position (old, old_start_x, old_start_y); clutter_actor_animate (old, CLUTTER_LINEAR, 500, "y", old_final_y, "x", old_final_x, "signal-swapped-after::completed", clear_group, old, NULL); break; case ROTATE: if (in_direction & X_AXIS) { clutter_actor_set_rotation (new, CLUTTER_X_AXIS, 90, 0, 0, 0); clutter_actor_animate (new, CLUTTER_LINEAR, 500, "rotation-angle-x", 0, NULL); clutter_actor_animate (old, CLUTTER_LINEAR, 500, "rotation-angle-x", (gfloat) - 90, "signal-swapped-after::completed", clear_group, old, NULL); } if (in_direction & Y_AXIS) { clutter_actor_set_rotation (new, CLUTTER_Y_AXIS, 90, 0, 0, 0); clutter_actor_animate (new, CLUTTER_LINEAR, 500, "rotation-angle-y", 0, NULL); clutter_actor_animate (old, CLUTTER_LINEAR, 500, "rotation-angle-y", (gfloat) - 90, "signal-swapped-after::completed", clear_group, old, NULL); } if (in_direction & Z_AXIS) { clutter_actor_set_rotation (new, CLUTTER_Z_AXIS, 90, 0, 0, 0); clutter_actor_animate (new, CLUTTER_LINEAR, 500, "rotation-angle-z", 0, NULL); clutter_actor_animate (old, CLUTTER_LINEAR, 500, "rotation-angle-z", (gfloat) - 90, "signal-swapped-after::completed", clear_group, old, NULL); } case FADE: clutter_actor_set_opacity (new, 0); clutter_actor_animate (new, CLUTTER_LINEAR, 500, "opacity", 0xff, NULL); clutter_actor_animate (old, CLUTTER_LINEAR, 500, "opacity", 0, "signal-swapped-after::completed", clear_group, old, NULL); break; case NOTRANS: default: clear_group (old); break; } } static int next_p2 (gint a) { int rval = 1; while (rval < a) rval <<= 1; return rval; } void set_shader_num (ClutterActor * actor, gint new_no) { int tex_width; int tex_height; gint shader_no; if (new_no >= 0 && shaders[new_no].name) { ClutterShader *shader; GError *error; shader_no = new_no; l_debug ("setting shaders[%i] named '%s'\n", shader_no, shaders[shader_no].name); shader = clutter_shader_new (); error = NULL; g_object_set (G_OBJECT (shader), "fragment-source", shaders[shader_no].source, NULL); /* try to bind the shader, provoking an error we catch if there is issues * with the shader sources we've provided. At a later stage it should be * possible to iterate through a set of alternate shader sources (glsl -> * asm -> cg?) and the one that succesfully compiles is used. */ clutter_shader_compile (shader, &error); if (error) { l_debug ("unable to set shaders[%i] named '%s': %s", shader_no, shaders[shader_no].name, error->message); g_error_free (error); clutter_actor_set_shader (actor, NULL); } else { clutter_actor_set_shader (actor, NULL); clutter_actor_set_shader (actor, shader); if (CLUTTER_IS_TEXTURE (actor)) { /* XXX - this assumes *a lot* about how things are done * internally on *some* hardware and driver */ tex_width = clutter_actor_get_width (actor); tex_width = next_p2 (tex_width); tex_height = clutter_actor_get_height (actor); tex_height = next_p2 (tex_height); clutter_actor_set_shader_param_float (actor, "x_step", 1.0f / tex_width); clutter_actor_set_shader_param_float (actor, "y_step", 1.0f / tex_height); } } } } gboolean hide_cursor () { //clutter_stage_hide_cursor (CLUTTER_STAGE (stage)); return FALSE; } gboolean stop_media () { l_debug ("Stop media"); if (bg_is_video) { #if CLUTTER_GST_MAJOR_VERSION >= 3 clutter_gst_player_set_playing (CLUTTER_GST_PLAYER(gstplayer), FALSE); #else clutter_media_set_playing (CLUTTER_MEDIA (background), FALSE); #endif g_source_remove (bg_is_video); } return FALSE; } GString * take_snapshot (const char *filename, int width) { l_debug ("Saving snapshot to %s", filename); guchar *data = clutter_stage_read_pixels (CLUTTER_STAGE (stage), 0, 0, -1, -1); GdkPixbuf *pixbuf = gdk_pixbuf_new_from_data (data, GDK_COLORSPACE_RGB, TRUE, 8, clutter_actor_get_width (stage), clutter_actor_get_height (stage), clutter_actor_get_width (stage) * 4, NULL, NULL); GdkPixbuf *scaled; if (width != 0) { int height = ((float)width / (float)clutter_actor_get_width (stage)) * (float)clutter_actor_get_height (stage); l_debug("Scale:%dx%d",width,height); scaled = gdk_pixbuf_scale_simple (pixbuf, width, height, GDK_INTERP_BILINEAR); } else { scaled=pixbuf; } if (g_strcmp0 (filename, "-") != 0) { gdk_pixbuf_save (scaled, filename, "jpeg", NULL, "quality", "90", NULL); g_object_unref(pixbuf); g_free (data); } else { gchar *buffer; gsize count; gdk_pixbuf_save_to_buffer (scaled, &buffer, &count, "jpeg", NULL, "quality", "90", NULL); /* JsonGenerator *generator = json_generator_new(); JsonNode *rootnode = json_node_new(JSON_NODE_OBJECT); JsonObject *resultnode = json_object_new(); JsonArray *resultarray = json_array_new(); JsonObject *newobject = json_object_new(); json_object_set_string_member(newobject,"snapshot",buffer); json_array_add_object_element(resultarray, newobject); json_object_set_array_member(resultnode, "results",resultarray); json_node_set_object(rootnode,resultnode); json_generator_set_root(generator, rootnode); gchar *str = json_generator_to_data (generator,NULL); GString *ret = g_string_new(str); json_array_unref (resultarray); g_object_unref (generator);*/ g_object_unref(pixbuf); g_free (data); char *encoded = g_base64_encode((guchar *)buffer,count); GString *ret = g_string_new(encoded); g_free(encoded); return ret; } return NULL; } gboolean take_dbsnapshot (int playorder) { gsize buffer_size; gchar *buffer; gchar options[10]; if (playorder > 0) { snprintf(options,10,"%d:0",playorder); do_display(options,TRUE); } else { playorder=current_item; } while (gtk_events_pending ()) gtk_main_iteration (); l_debug ("Saving snapshot of playlist item %d", playorder); guchar *data = clutter_stage_read_pixels (CLUTTER_STAGE (stage), 0, 0, -1, -1); GdkPixbuf *pixbuf = gdk_pixbuf_new_from_data (data, GDK_COLORSPACE_RGB, TRUE, 8, clutter_actor_get_width (stage), clutter_actor_get_height (stage), clutter_actor_get_width (stage) * 4, NULL, NULL); float scale = clutter_actor_get_width(stage)/256; GdkPixbuf *scaled = gdk_pixbuf_scale_simple (pixbuf, 256, clutter_actor_get_height(stage)/scale, GDK_INTERP_BILINEAR); gdk_pixbuf_save_to_buffer (scaled,&buffer,&buffer_size, "jpeg", NULL, "quality", "90", NULL); char chunk[2*1024*1024]; //2Mb max - a 256-pixel wide jpg should never be bigger than that mysql_real_escape_string(lyricDb, chunk, buffer, buffer_size); // Custom sql connection so we don't log full image data GString *query = g_string_new (NULL); g_string_printf(query, "UPDATE playlist SET snapshot='%s' WHERE playorder=%d",chunk, playorder); if (mysql_query (lyricDb, query->str)) { l_debug (_("SQL Error %u: %s"), mysql_errno (lyricDb), mysql_error (lyricDb)); } g_object_unref(scaled); g_object_unref(pixbuf); g_free (data); g_string_free (query, TRUE); return TRUE; } gboolean playlist_snapshot(int playlist) { l_debug("Save playlist snapshots %d",playlist); MYSQL_ROW row; MYSQL_RES *result; change_backdrop (default_bg, TRUE, NO_EFFECT); do_query (FALSE, lyricDb, "SELECT p1.playorder FROM playlist AS p1 LEFT JOIN playlist AS p2 ON p1.playlist=p2.data LEFT JOIN playlist AS p3 ON p2.playlist=p3.data WHERE p1.playlist=%d OR p2.playlist=%d OR p3.playlist=%d ORDER BY p1.playorder",playlist,playlist,playlist); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); while (row != NULL) { l_debug("Snapping playorder %d", atoi(row[0])); take_dbsnapshot (atoi(row[0])); row = mysql_fetch_row (result); } mysql_free_result (result); return TRUE; } GString * do_get (const gchar * item) { JsonGenerator *generator = json_generator_new(); JsonNode *rootnode = json_node_new(JSON_NODE_OBJECT); JsonObject *resultnode = json_object_new(); JsonArray *resultarray = json_array_new(); JsonObject *newobject = json_object_new(); if (g_strcmp0(item,"text:")==0) { json_object_set_string_member(newobject,"header",headtext_text); json_object_set_string_member(newobject,"main",maintext_text); json_object_set_string_member(newobject,"footer",foottext_text); json_object_set_string_member(newobject,"osd",osd_text); } else if (g_strcmp0(item,"bg:")==0) { gchar **line = g_strsplit (backdrop_text, ";", 2); if (g_strcmp0 (line[0], "dir") == 0) { GFileInfo *info = g_file_query_info (g_file_new_for_path (line[1]), G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE, G_FILE_QUERY_INFO_NONE, NULL, NULL); if (info && (g_content_type_is_a(g_file_info_get_content_type (info), "image/*"))) { gchar *contents = NULL; gsize length = 0; g_file_get_contents(line[1], &contents, &length, NULL); char *encoded = g_base64_encode((guchar *)contents, length); json_object_set_string_member(newobject,"image",encoded); g_free(encoded); g_free(contents); } } } json_array_add_object_element(resultarray, newobject); json_object_set_array_member(resultnode, "results",resultarray); json_node_set_object(rootnode,resultnode); json_generator_set_root(generator, rootnode); gchar *str = json_generator_to_data (generator,NULL); GString *ret = g_string_new(str); json_array_unref (resultarray); g_object_unref (generator); return ret; } void play_video(const gchar * uri, gboolean is_uri) { #if CLUTTER_GST_MAJOR_VERSION >= 3 background = clutter_actor_new(); background_video = clutter_gst_aspectratio_new(); if (gstplayer == NULL) { gstplayer = clutter_gst_playback_new(); } clutter_gst_content_set_player(CLUTTER_GST_CONTENT(background_video), CLUTTER_GST_PLAYER(gstplayer)); if (is_uri) { clutter_gst_playback_set_uri(gstplayer,uri); } else { clutter_gst_playback_set_filename(gstplayer,uri); } clutter_actor_set_content(background, background_video); clutter_actor_set_size (background,stage_width,stage_height); #else background = clutter_gst_video_texture_new (); if (is_uri) { clutter_media_set_uri (CLUTTER_MEDIA (background), uri); } else { clutter_media_set_filename (CLUTTER_MEDIA (background), uri); } clutter_texture_set_keep_aspect_ratio (CLUTTER_TEXTURE (background), TRUE); gint w, h; clutter_texture_get_base_size (CLUTTER_TEXTURE (background), &w, &h); if (((gfloat) w / (gfloat) h) < (stage_width / stage_height)) { clutter_actor_set_size (background, (w * (stage_height / h)), stage_height); } else { clutter_actor_set_size (background, stage_width, (h * (stage_width / w))); } #endif clutter_actor_set_anchor_point_from_gravity (background, CLUTTER_GRAVITY_CENTER); clutter_actor_set_position (background, stage_width / 2, stage_height / 2); #if CLUTTER_GST_MAJOR_VERSION >= 3 clutter_gst_player_set_playing (CLUTTER_GST_PLAYER(gstplayer), TRUE); #endif #if CLUTTER_GST_MAJOR_VERSION >= 3 GstElement *playbin = clutter_gst_player_get_pipeline (clutter_gst_content_get_player((ClutterGstContent *)background_video)); g_signal_connect (gstplayer, "eos", G_CALLBACK (loop_video), NULL); #elif CLUTTER_GST_MAJOR_VERSION >= 1 GstElement *playbin = clutter_gst_video_texture_get_pipeline (CLUTTER_GST_VIDEO_TEXTURE (background)); g_signal_connect (background, "eos", G_CALLBACK (loop_video), NULL); #else GstElement *playbin = clutter_gst_video_texture_get_playbin (CLUTTER_GST_VIDEO_TEXTURE (background)); g_signal_connect (background, "eos", G_CALLBACK (loop_video), NULL); #endif if (server_mode != NORMAL_SERVER) { g_object_set (G_OBJECT (playbin), "flags", 1, NULL); bg_is_video = g_timeout_add_seconds (3, (GSourceFunc) stop_media, NULL); } else { bg_is_video = TRUE; } #if CLUTTER_GST_MAJOR_VERSION >= 3 clutter_gst_player_set_playing (CLUTTER_GST_PLAYER(gstplayer), TRUE); #else clutter_media_set_playing (CLUTTER_MEDIA (background), TRUE); #endif } lyricue-4.0.12/src/Makefile.am0000664000000000000000000000160513053456656013004 0ustar ## Process this file with automake to produce Makefile.in AM_CPPFLAGS = \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ -DPACKAGE_SRC_DIR=\""$(srcdir)"\" \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" $(CLUTTER_CFLAGS) \ $(GTK_CFLAGS) $(CLUTTERGTK_CFLAGS) $(CLUTTERGST_CFLAGS) \ $(GSTREAMER_CFLAGS) $(JSONGLIB_CFLAGS) $(AVAHI_CFLAGS) \ $(AVAHIGLIB_CFLAGS) AM_CFLAGS =\ -Wall\ -Wno-deprecated-declarations\ -g bin_PROGRAMS = \ lyricue_display dist_bin_SCRIPTS = \ lyricue \ lyricue_remote lyricue_display_SOURCES = \ lyricue_display.c\ lyricue_display.h \ database.c \ database.h \ display.c \ display.h \ utils.c \ utils.h \ i18n.h \ bible.c \ bible.h \ avahi.c \ avahi.h lyricue_display_LDADD = \ $(CLUTTER_LIBS) \ $(GTK_LIBS) \ $(CLUTTERGTK_LIBS) \ $(CLUTTERGST_LIBS) \ $(GSTREAMER_LIBS) \ $(JSONGLIB_LIBS) \ $(AVAHIGLIB_LIBS) \ $(AVAHI_LIBS) lyricue-4.0.12/src/bible.h0000664000000000000000000000271613053456656012202 0ustar /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA */ void bible_load(const gchar *bible); gchar * do_grab_verse(const gchar *verse); gchar * do_grab_verse_sword(const gchar *book, int chapter_start, int chapter_end, int verse_start, int verse_end); gchar * do_grab_verse_db(const gchar *book, int chapter_start, int chapter_end, int verse_start, int verse_end); GString * do_bible(const gchar * options); GString * get_bibles(); GString * get_maxchapter(const gchar * book); GString * get_maxverse(const gchar * options); GString * show_verse(const gchar * verse, gboolean trim_end); lyricue-4.0.12/src/display.h0000664000000000000000000000505713053456656012573 0ustar /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA */ void set_maintext(const gchar *text, int transition, gboolean wrap); void set_headtext(const gchar *text, int transition, gboolean wrap); void set_foottext(const gchar *text, int transition, gboolean wrap); void set_osd (int speed, const gchar *text); int create_main_window(int argc, char *argv[]); void create_outlined_text (ClutterActor *group, const gchar *text, const gchar *font, const gchar *text_colour, const gchar *shadow_colour, gboolean wrap, gboolean force_centre); void change_backdrop (const gchar * id, gboolean loop, gint transition); void fade_backdrop(gint amount); void blur_backdrop(gint amount); gboolean input_cb (ClutterStage *stage, ClutterEvent *event, gpointer user_data); void size_change (ClutterActor *myactor); void loop_video (ClutterActor *video); void media_pause (); void media_skip (gint duration); void load_font_defaults (); void clear_group(ClutterActor *actor); ClutterActor* destroy_actor(ClutterActor *actor); void do_transition(ClutterActor *new, ClutterActor *old, int transition, gfloat final_x, gfloat final_y); void set_shader_num (ClutterActor *actor, gint new_no); gboolean hide_cursor (); gboolean stop_media (); GString * take_snapshot (const char *filename, int width); gboolean take_dbsnapshot (int playorder); gboolean playlist_snapshot (int playlist); GString * do_get(const gchar* item); extern gchar *extra_data; void play_video(const gchar * uri, gboolean is_uri) ; lyricue-4.0.12/src/lyricue_remote0000775000000000000000000000676513053456656013741 0ustar #!/usr/bin/env perl #****** lyricue_remote/setup # NAME # Setup section # DESCRIPTION # Loads required modules, sets some global variables, # and other global things # SOURCE # # # Modules we use. # use strict; use warnings; use POSIX; use IO::Socket::INET; my $profile = "Default"; if ($ARGV[0]) { foreach (0 .. (@ARGV - 1)) { if ($ARGV[$_] eq "-v") { print "Lyricue Remote\n"; exit; } elsif ($ARGV[$_] eq "-p") { $profile = $ARGV[$_ + 1]; $ARGV[$_ + 1] = ""; } elsif ($ARGV[$_] eq "-h") { print "\nUsage: lyricue_remote <-v> <-s> \n\n"; print "\t-v: Prints Lyricue version information & exits\n"; print "\t-p profile: Sets the profile to send messsages to\n"; print "\tcommand: Can be any of next_page, prev_page, next_song, prev_song,\n"; print "\t next_point, blank, osd, close or custom\n"; print "\t If custom then the next 3 arguments will be sent without parsing\n"; print "\t to the server\n"; exit; } elsif ($ARGV[$_] eq "") { # ignore } elsif ($ARGV[$_] eq "next_page") { update_display("display", "next_page", ""); } elsif ($ARGV[$_] eq "next_song") { update_display("display", "next_song", ""); } elsif ($ARGV[$_] eq "prev_page") { update_display("display", "prev_page", ""); } elsif ($ARGV[$_] eq "prev_song") { update_display("display", "prev_song", ""); } elsif ($ARGV[$_] eq "blank") { update_display("blank", "", ""); } elsif ($ARGV[$_] eq "next_point") { update_display("next_point", "", ""); } elsif ($ARGV[$_] eq "close") { system("pkill -f lyricue_display"); system("pkill -9 -f lyricue_display"); } elsif ($ARGV[$_] eq "osd") { my $osd = ""; if ($ARGV[$_+1]) { $osd = $ARGV[$_+1]; $osd =~ s/:/#SEMI#/g; $osd =~ s/\n/#BREAK#/g; } update_display("osd",$ARGV[$_+2], $osd); } elsif ($ARGV[$_] eq "custom") { update_display($ARGV[$_+1],$ARGV[$_+2],$ARGV[$_+3]); exit; } } } #*** #****f* lyricue_remote/update_display # NAME # update_display -- # SYNOPSIS # update_display ($command, $primary, $secondary) # FUNCTION # Open a connection the the server and send a command. Status is returned # INPUTS # $command - Command to send # $primary - First parameter to send # $secondary - Second parameter to send # OUTPUT # Updated display # SOURCE # sub update_display { my ($command, $primary, $secondary) = @_; if (!defined($secondary)) { $secondary = ""; } if (!defined($primary)) { $primary = ""; } my @lines = split("\n",`mysql -s -N -ulyric lyricDb -e 'SELECT host FROM status WHERE type LIKE "%normal%" OR type LIKE "%simple%" OR type LIKE "%headless%"'`); foreach my $entry (@lines) { my ($hostname,$port) = split(":", $entry,2); if ( my $server = IO::Socket::INET->new( Proto => "tcp", PeerAddr => $hostname, PeerPort => $port )) { print $server $command . ":" . $primary . ":" . $secondary . "\n"; if (defined(my $status = <$server>)) { print $status; } close($server); } } } #*** lyricue-4.0.12/src/bible.c0000664000000000000000000003241113053456656012170 0ustar /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA */ #include "lyricue_display.h" #include "bible.h" extern MYSQL *bibleDb; extern ClutterActor *maintext; extern ClutterActor *headtext; extern gfloat stage_height; gchar *bible_table = NULL; gchar *bible_name = NULL; gboolean is_sword = FALSE; GRegex *re_newline = NULL; GRegex *re_book = NULL; GRegex *re_maxchapter = NULL; GRegex *re_maxverse = NULL; gchar * do_grab_verse (const gchar * verse) { l_debug ("Show verse %s", verse); gchar *book; int chapter_start, chapter_end, verse_start, verse_end; gchar **line = g_strsplit_set (verse, ":-", 5); book = g_strdup(line[0]); chapter_start = atoi (line[1]); verse_start = atoi (line[2]); chapter_end = atoi (line[3]); verse_end = atoi (line[4]); if (is_sword) { return do_grab_verse_sword (book, chapter_start, chapter_end, verse_start, verse_end); } else { if (bibleDb != NULL) { return do_grab_verse_db (book, chapter_start, chapter_end, verse_start, verse_end); } else { return NULL; } } } gchar * do_grab_verse_sword (const gchar * book, int chapter_start, int chapter_end, int verse_start, int verse_end) { l_debug ("Grabbing verse from sword - %s %d:%d - %d:%d (%s)", book, chapter_start, verse_start, chapter_end, verse_end, bible_table); GString *command = g_string_new (NULL); g_string_printf (command, "diatheke -b %s -e UTF8 -k '%s' %d:%d-%d:%d", bible_table, book, chapter_start, verse_start, chapter_end, verse_end); gchar *output = NULL; l_debug ("Command: %s", command->str); g_spawn_command_line_sync (g_string_free (command, FALSE), &output, NULL, NULL, NULL); g_strchomp (output); if (re_book == NULL) { re_book = g_regex_new ("^.*\\s(\\d)", G_REGEX_MULTILINE, 0, NULL); } if (re_newline == NULL) { re_newline = g_regex_new("\n\n", 0, 0, NULL); } int re_size = strlen(bible_table)+5; gchar *bible_re = g_malloc(re_size); g_snprintf(bible_re, re_size, "\\(%s\\)",bible_table); GRegex *re_bible = g_regex_new(bible_re, G_REGEX_MULTILINE, 0, NULL); gchar *text = NULL; gchar *text2 = NULL; gchar *text3 = NULL; text = g_regex_replace (re_book, output, -1, 0, "\\1", 0, NULL); text2 = g_regex_replace (re_bible, text, -1, 0, "", 0, NULL); text3 = g_regex_replace (re_newline, text2, -1, 0, "\n", 0, NULL); g_free(text2); g_free(text); return text3; } gchar * do_grab_verse_db (const gchar * book, int chapter_start, int chapter_end, int verse_start, int verse_end) { l_debug ("Grabbing verse from db - %s %d:%d - %d:%d", book, chapter_start, verse_start, chapter_end, verse_end); MYSQL_ROW row; MYSQL_RES *result; if (bible_table == NULL) return ""; if (chapter_start == chapter_end) { do_query (FALSE, bibleDb, "SELECT chapternum,versenum,verse FROM %s WHERE book LIKE \"%s\%\" AND chapternum=%d AND versenum >=%d AND versenum <=%d", bible_table, book, chapter_start, verse_start, verse_end); } else { do_query (FALSE, bibleDb, "SELECT chapternum,versenum,verse FROM %s WHERE book LIKE \"%s\%\" AND ((chapternum = %d AND versenum > %d) OR (chapternum > %d AND chapternum < %d) OR (chapternum = %d AND versenum < %d))", bible_table, book, chapter_start, verse_start, chapter_start, chapter_end, chapter_end, verse_end); } result = mysql_store_result (bibleDb); GString *text = g_string_new (NULL); while ((row = mysql_fetch_row (result))) { g_string_append_printf (text, "%s:%s %s\n", row[0], row[1], row[2]); } return g_string_free (text, FALSE); } void bible_load (const gchar * bible) { if ((bible == NULL) || (g_strcmp0(bible,"")==0)) { is_sword=FALSE; bibleDb=NULL; return; } gchar **line = g_strsplit (bible, ":", 2); if ((line[1] == NULL) || (g_strcmp0(line[1],"") == 0)) return; gchar **desc = g_strsplit (line[1], ";", 2); bible_name = g_strdup (desc[1]); if (g_strcmp0 (desc[0], "db") == 0) { is_sword = FALSE; gchar **loc = g_strsplit (line[0], "@", 2); l_debug ("Loading Bible DB %s from %s", loc[0], loc[1]); bible_table = g_strdup (loc[0]); bibleDb = db_connect (loc[1], "error"); } else { bible_table = g_strdup (line[0]); l_debug ("Loading Sword bibles %s", line[0]); is_sword = TRUE; } } GString * do_bible (const gchar * options) { gchar **line = g_strsplit(options, ":", 2); GString *retval = NULL; if (g_ascii_strncasecmp(line[0],"available",9) == 0) { retval = get_bibles(); } else if (g_ascii_strncasecmp(line[0],"maxchapter",9) == 0) { retval = get_maxchapter(line[1]); } else if (g_ascii_strncasecmp(line[0],"maxverse",8) == 0) { retval = get_maxverse(line[1]); } else if (g_ascii_strncasecmp(line[0],"verse",9) == 0) { retval = show_verse(line[1], TRUE); } else if (g_ascii_strncasecmp(line[0],"verse_start",11) == 0) { retval = show_verse(line[1], FALSE); } g_strfreev(line); return retval; } GString * get_bibles() { JsonGenerator *generator = json_generator_new(); JsonNode *rootnode = json_node_new(JSON_NODE_OBJECT); JsonObject *resultnode = json_object_new(); JsonArray *resultarray = json_array_new(); // Find sword bibles gchar *output = NULL; g_spawn_command_line_sync("diatheke -b system -k modulelist", &output, NULL, NULL, NULL); g_strchomp(output); gchar **line = g_strsplit(output,"\n",0); int linenum=0; while (line[linenum] != NULL) { if (g_ascii_strncasecmp(line[linenum],"Biblical Texts:",15) == 0) { linenum++; while (line[linenum] != NULL) { if (g_ascii_strncasecmp(line[linenum],"Commentaries:",13) == 0) { while (line[linenum] != NULL) { linenum++; } linenum--; } else { gchar **bible = g_strsplit(line[linenum], " : ",2); JsonObject *newobject = json_object_new(); json_object_set_string_member(newobject, "type", "sword"); json_object_set_string_member(newobject, "name", bible[0]); json_object_set_string_member(newobject, "description", bible[1]); json_array_add_object_element(resultarray, newobject); g_strfreev(bible); } linenum++; } linenum--; } linenum++; } g_free(output); // Find bibleDb bibles if (bibleDb != NULL) { MYSQL_RES *result; MYSQL_ROW row; result = mysql_list_tables(bibleDb, NULL); while ((row = mysql_fetch_row(result))) { int res = do_query(FALSE, bibleDb, "SELECT verse FROM %s WHERE book=\"Bible\"", row[0]); if (res == 0) { MYSQL_RES *result2; MYSQL_ROW row2; result2 = mysql_store_result(bibleDb); row2 = mysql_fetch_row(result2); JsonObject *newobject = json_object_new(); json_object_set_string_member(newobject, "type", "db"); json_object_set_string_member(newobject, "name", row[0]); json_object_set_string_member(newobject, "description", row2[0]); json_array_add_object_element(resultarray, newobject); } } } json_object_set_array_member(resultnode, "results",resultarray); json_node_set_object(rootnode,resultnode); json_generator_set_root(generator, rootnode); gchar *str = json_generator_to_data (generator,NULL); GString *ret = g_string_new(str); json_array_unref (resultarray); g_object_unref (generator); g_strfreev(line); return ret; } GString * get_maxchapter(const gchar * book) { GString *retval = g_string_new(NULL); if (is_sword) { if (re_maxchapter == NULL) { re_maxchapter = g_regex_new ("^.* ([0-9]*):[0-9].*$", G_REGEX_MULTILINE,0, NULL); } GString *command = g_string_new(NULL); g_string_printf(command, "diatheke -b %s -e UTF8 -k '%s'", bible_table, book); gchar *output = NULL; l_debug ("Command: %s", command->str); g_spawn_command_line_sync (g_string_free (command, FALSE), &output, NULL, NULL, NULL); gchar **line = g_strsplit(output,"\n",0); int linenum=0; int maxchapter=0; while (line[linenum] != NULL) { gchar *text = NULL; text = g_regex_replace(re_maxchapter, line[linenum], -1, 0, "\\1", 0, NULL); if (atoi(text) != 0) { maxchapter=atoi(text); } linenum++; } g_strfreev(line); g_string_printf(retval, "%d", maxchapter); return retval; } else { if (bibleDb != NULL) { MYSQL_ROW row; MYSQL_RES *result; do_query(FALSE, bibleDb, "SELECT MAX(chapternum) FROM %s WHERE book LIKE \"%s%%\"", bible_table, book); result = mysql_store_result(bibleDb); if ((row = mysql_fetch_row(result))) { l_debug("%s",row[0]); g_string_printf(retval, "%s",row[0]); return retval; } } } return NULL; } GString * get_maxverse(const gchar * options) { gchar **verse_split = g_strsplit(options,";",2); GString *retval = g_string_new(NULL); if (is_sword) { if (re_maxverse == NULL) { re_maxverse = g_regex_new ("^.* [0-9]*:([0-9]*): .*$", G_REGEX_MULTILINE,0, NULL); } GString *command = g_string_new(NULL); g_string_printf(command, "diatheke -b %s -e UTF8 -k '%s' %s", bible_table, verse_split[0], verse_split[1]); gchar *output = NULL; l_debug ("Command: %s", command->str); g_spawn_command_line_sync (g_string_free (command, FALSE), &output, NULL, NULL, NULL); gchar **line = g_strsplit(output,"\n",0); int linenum=0; int maxverse=0; while (line[linenum] != NULL) { gchar *text = NULL; text = g_regex_replace(re_maxverse, line[linenum], -1, 0, "\\1", 0, NULL); if (atoi(text) != 0) { maxverse=atoi(text); } linenum++; } g_strfreev(line); g_strfreev(verse_split); g_string_printf(retval, "%d", maxverse); return retval; } else { if (bibleDb != NULL) { MYSQL_ROW row; MYSQL_RES *result; do_query(FALSE, bibleDb, "SELECT MAX(versenum) FROM %s WHERE book LIKE \"%s%%\" AND chapternum=\"%s\"", bible_table, verse_split[0], verse_split[1]); result = mysql_store_result(bibleDb); if ((row = mysql_fetch_row(result))) { g_string_printf(retval, "%s",row[0]); g_strfreev(verse_split); return retval; } } } g_strfreev(verse_split); return NULL; } GString * show_verse(const gchar * verse_in, gboolean trim_end) { GString *verse = g_string_new(parse_special(verse_in)); l_debug("Show Verse: %s", verse->str); gchar *verse_text = do_grab_verse(verse->str); set_foottext("",NO_EFFECT,TRUE); set_headtext(verse->str,NO_EFFECT,TRUE); set_maintext(verse_text,NO_EFFECT,TRUE); gfloat width, height; gfloat hwidth, hheight; clutter_actor_get_size(maintext, &width, &height); clutter_actor_get_size(headtext, &hwidth, &hheight); l_debug("%s Size %fx%f",verse->str, width,height); while (height >= (stage_height-hheight)) { gchar **line = g_strsplit_set (verse->str, ":-", 5); if (!trim_end) { int verse_end = atoi(line[4]); g_string_printf(verse, "%s:%s:%s-%s:%d",line[0],line[1],line[2],line[3],verse_end-1); } else { int verse_start = atoi(line[2]); g_string_printf(verse, "%s:%s:%d-%s:%s",line[0],line[1],verse_start+1,line[3],line[4]); } g_strfreev(line); gchar *verse_text = do_grab_verse(verse->str); set_maintext(verse_text,NO_EFFECT,TRUE); g_free(verse_text); clutter_actor_get_size(maintext, &width, &height); l_debug("%s Size %fx%f",verse->str,width,height); } set_headtext(verse->str,NO_EFFECT,1); return verse; } lyricue-4.0.12/src/avahi.c0000664000000000000000000002534413053456656012212 0ustar #include "lyricue_display.h" static AvahiEntryGroup *group = NULL; static AvahiSimplePoll *simple_poll = NULL; static char *name = NULL; static AvahiClient *client = NULL; static AvahiServiceBrowser *sb = NULL; static int port = 0; static char *type_in = NULL; extern GHashTable *miniviews; extern gchar *profile; extern gchar *extra_data; extern gchar hostname[16]; extern int server_port; void entry_group_callback(AvahiEntryGroup *g, AvahiEntryGroupState state, AVAHI_GCC_UNUSED void *userdata) { assert(g == group || group == NULL); group = g; /* Called whenever the entry group state changes */ switch (state) { case AVAHI_ENTRY_GROUP_ESTABLISHED : /* The entry group has been established successfully */ l_debug("Service '%s' successfully established.", name); break; case AVAHI_ENTRY_GROUP_COLLISION : { char *n; /* A service name collision with a remote service * happened. Let's pick a new name */ n = avahi_alternative_service_name(name); avahi_free(name); name = n; l_debug("Service name collision, renaming service to '%s'", name); /* And recreate the services */ create_services(avahi_entry_group_get_client(g)); break; } case AVAHI_ENTRY_GROUP_FAILURE : l_debug("Entry group failure: %s", avahi_strerror(avahi_client_errno(avahi_entry_group_get_client(g)))); /* Some kind of failure happened while we were registering our services */ avahi_simple_poll_quit(simple_poll); break; case AVAHI_ENTRY_GROUP_UNCOMMITED: case AVAHI_ENTRY_GROUP_REGISTERING: ; } } void create_services(AvahiClient *c) { char *n; gchar *type_txt, *profile_txt, *data_txt; int ret; assert(c); /* If this is the first time we're called, let's create a new * entry group if necessary */ if (!group) if (!(group = avahi_entry_group_new(c, entry_group_callback, NULL))) { l_debug("avahi_entry_group_new() failed: %s", avahi_strerror(avahi_client_errno(c))); goto fail; } /* If the group is empty (either because it was just created, or * because it was reset previously, add our entries. */ if (avahi_entry_group_is_empty(group)) { l_debug("Adding service '%s' type '%s'", name, type_in); /* Set type of service */ profile_txt = g_strdup_printf("profile=%s", profile); type_txt = g_strdup_printf("type=%s", type_in); if (extra_data == NULL) { extra_data = g_strdup(""); } data_txt = g_strdup_printf("data=%s", extra_data); /* Add the service for Lyricue Display */ if ((ret = avahi_entry_group_add_service(group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, name, "_lyricue._tcp", NULL, NULL, port, type_txt, profile_txt, data_txt, NULL)) < 0) { if (ret == AVAHI_ERR_COLLISION) goto collision; l_debug("Failed to add _lyricue._tcp service: %s", avahi_strerror(ret)); goto fail; } g_free(profile_txt); g_free(type_txt); g_free(data_txt); /* Tell the server to register the service */ if ((ret = avahi_entry_group_commit(group)) < 0) { l_debug("Failed to commit entry group: %s", avahi_strerror(ret)); goto fail; } } return; collision: /* A service name collision with a local service happened. Let's * pick a new name */ n = avahi_alternative_service_name(name); avahi_free(name); name = n; l_debug("Service name collision, renaming service to '%s'", name); avahi_entry_group_reset(group); create_services(c); return; fail: avahi_simple_poll_quit(simple_poll); } void client_callback(AvahiClient *c, AvahiClientState state, AVAHI_GCC_UNUSED void * userdata) { assert(c); /* Called whenever the client or server state changes */ switch (state) { case AVAHI_CLIENT_S_RUNNING: /* The server has startup successfully and registered its host * name on the network, so it's time to create our services */ create_services(c); break; case AVAHI_CLIENT_FAILURE: l_debug("Client failure: %s", avahi_strerror(avahi_client_errno(c))); avahi_simple_poll_quit(simple_poll); break; case AVAHI_CLIENT_S_COLLISION: /* Let's drop our registered services. When the server is back * in AVAHI_SERVER_RUNNING state we will register them * again with the new host name. */ case AVAHI_CLIENT_S_REGISTERING: /* The server records are now being established. This * might be caused by a host name change. We need to wait * for our own records to register until the host name is * properly esatblished. */ if (group) avahi_entry_group_reset(group); break; case AVAHI_CLIENT_CONNECTING: ; } } int publish_avahi(int port_passed, char *type_in_passed) { int error; AvahiGLibPoll *glib_poll; port = port_passed; type_in = strndup(type_in_passed,32); avahi_set_allocator (avahi_glib_allocator ()); /* Create the GLIB Adaptor */ glib_poll = avahi_glib_poll_new (NULL, G_PRIORITY_DEFAULT); name = avahi_strdup("Lyricue Display"); /* Allocate a new client */ client = avahi_client_new(avahi_glib_poll_get(glib_poll), 0, client_callback, NULL, &error); /* Check if creating the client object succeeded */ if (!client) { l_debug("Failed to create client: %s", avahi_strerror(error)); unpublish_avahi(); } /* Create the service browser */ if (miniviews==NULL) { miniviews = g_hash_table_new(g_str_hash, g_str_equal); } if (sb == NULL) { if (!(sb = avahi_service_browser_new(client, AVAHI_IF_UNSPEC, AVAHI_PROTO_INET, "_lyricue._tcp", NULL, 0, browse_callback, client))) { l_debug("Failed to create service browser: %s\n", avahi_strerror(avahi_client_errno(client))); } } return 0; } int unpublish_avahi() { if (client) avahi_client_free(client); avahi_free(name); return 0; } void browse_callback( AvahiServiceBrowser *b, AvahiIfIndex interface, AvahiProtocol protocol, AvahiBrowserEvent event, const char *name, const char *type, const char *domain, AVAHI_GCC_UNUSED AvahiLookupResultFlags flags, void* userdata) { AvahiClient *c = userdata; assert(b); /* Called whenever a new services becomes available on the LAN or is removed from the LAN */ switch (event) { case AVAHI_BROWSER_FAILURE: fprintf(stderr, "(Browser) %s\n", avahi_strerror(avahi_client_errno(avahi_service_browser_get_client(b)))); avahi_simple_poll_quit(simple_poll); return; case AVAHI_BROWSER_NEW: /* We ignore the returned resolver object. In the callback function we free it. If the server is terminated before the callback function is called the server will free the resolver for us. */ if (!(avahi_service_resolver_new(c, interface, protocol, name, type, domain, AVAHI_PROTO_INET, 0, resolve_callback, c))) fprintf(stderr, "Failed to resolve service '%s': %s\n", name, avahi_strerror(avahi_client_errno(c))); break; case AVAHI_BROWSER_REMOVE: fprintf(stderr, "(Browser) REMOVE: service '%s' of type '%s' in domain '%s'\n", name, type, domain); break; case AVAHI_BROWSER_ALL_FOR_NOW: case AVAHI_BROWSER_CACHE_EXHAUSTED: break; } } void resolve_callback( AvahiServiceResolver *r, AVAHI_GCC_UNUSED AvahiIfIndex interface, AVAHI_GCC_UNUSED AvahiProtocol protocol, AvahiResolverEvent event, const char *name, const char *type, const char *domain, const char *host_name, const AvahiAddress *address, uint16_t port, AvahiStringList *txt, AvahiLookupResultFlags flags, AVAHI_GCC_UNUSED void* userdata) { assert(r); /* Called whenever a service has been resolved successfully or timed out */ switch (event) { case AVAHI_RESOLVER_FAILURE: l_debug("(Resolver) Failed to resolve service '%s' of type '%s' in domain '%s': %s\n", name, type, domain, avahi_strerror(avahi_client_errno(avahi_service_resolver_get_client(r)))); break; case AVAHI_RESOLVER_FOUND: { char a[AVAHI_ADDRESS_STR_MAX]; avahi_address_snprint(a, sizeof(a), address); char *value; char *type = NULL; size_t *size=NULL; AvahiStringList *type_txt = avahi_string_list_find(txt,"type"); if (type_txt != NULL){ avahi_string_list_get_pair(type_txt,&type, &value, size); l_debug("Type = %s",value); if ((g_strcmp0(value,"miniview") == 0) || (g_strcmp0(value,"android") == 0)) { char *data="data"; char *extra_data; size_t *size2=NULL; AvahiStringList *data_txt = avahi_string_list_find(txt,"data"); if (data_txt != NULL) { avahi_string_list_get_pair(data_txt,&data, &extra_data, size2); gchar *myhost = g_strdup_printf("%s:%u",hostname,server_port); if (g_strcmp0(extra_data, myhost)==0) { gchar *host = g_strdup_printf("%s:%u",a, port); l_debug("Found miniview on %s", host); if (!g_hash_table_contains(miniviews,host)) { g_hash_table_insert(miniviews, g_strdup(name), host); } } avahi_free(data); avahi_free(extra_data); g_free(myhost); } } avahi_free(value); avahi_free(type); } } } avahi_service_resolver_free(r); } void update_service_profile() { gchar *type_txt, *profile_txt, *data_txt; profile_txt = g_strdup_printf("profile=%s", profile); type_txt = g_strdup_printf("type=%s", type_in); if (extra_data == NULL) { extra_data = g_strdup(""); } data_txt = g_strdup_printf("data=%s", extra_data); avahi_entry_group_update_service_txt(group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, name, "_lyricue._tcp", NULL, type_txt, profile_txt, extra_data, NULL); g_free(profile_txt); g_free(type_txt); g_free(data_txt); } lyricue-4.0.12/src/avahi.h0000664000000000000000000000262413053456656012213 0ustar #include #include #include #include #include #include #include #include #include #include #include #include void entry_group_callback(AvahiEntryGroup *g, AvahiEntryGroupState state, AVAHI_GCC_UNUSED void *userdata); void create_services(AvahiClient *c); void client_callback(AvahiClient *c, AvahiClientState state, AVAHI_GCC_UNUSED void * userdata); void modify_callback(AVAHI_GCC_UNUSED AvahiTimeout *e, void *userdata); int publish_avahi(int port, char *type_in); int unpublish_avahi(); void browse_callback( AvahiServiceBrowser *b, AvahiIfIndex interface, AvahiProtocol protocol, AvahiBrowserEvent event, const char *name, const char *type, const char *domain, AVAHI_GCC_UNUSED AvahiLookupResultFlags flags, void* userdata); void resolve_callback( AvahiServiceResolver *r, AVAHI_GCC_UNUSED AvahiIfIndex interface, AVAHI_GCC_UNUSED AvahiProtocol protocol, AvahiResolverEvent event, const char *name, const char *type, const char *domain, const char *host_name, const AvahiAddress *address, uint16_t port, AvahiStringList *txt, AvahiLookupResultFlags flags, AVAHI_GCC_UNUSED void* userdata); void update_service_profile(); lyricue-4.0.12/src/utils.c0000664000000000000000000000570413053456656012260 0ustar /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA */ #include #include #include #include #include extern int server_port; extern gboolean debugging; GRegex *re_break = NULL; GRegex *re_semi = NULL; GRegex *re_amp = NULL; FILE *logfile = NULL; void l_debug (const gchar * fmt, ...) { va_list argp; char timestr[100]; time_t t; if (logfile == NULL) { gchar logname[32], ologname[32]; g_snprintf (logname, 32, "server-%d.log", server_port); g_snprintf (ologname, 32, "server-%d.log.old", server_port); gchar *logpath = g_build_filename (g_get_user_data_dir (), "lyricue", logname, NULL); gchar *ologpath = g_build_filename (g_get_user_data_dir (), "lyricue", ologname, NULL); g_rename (logpath, ologpath); logfile = g_fopen (logpath, "w"); if (debugging) { g_printf ("Logging to %s\n", logpath); } } t = time (NULL); if (strftime (timestr, sizeof (timestr), "%H:%M:%S %d/%m", localtime (&t)) != 0) { if (debugging) { g_fprintf (stderr, "(%s) ", timestr); } g_fprintf (logfile, "(%s) ", timestr); } if (debugging) { // stderr va_start (argp, fmt); g_vfprintf (stderr, fmt, argp); g_fprintf (stderr, "\n"); va_end (argp); } // logfile va_start (argp, fmt); g_vfprintf (logfile, fmt, argp); g_fprintf (logfile, "\n"); va_end (argp); fflush (logfile); } void close_log () { fclose (logfile); } gchar * parse_special (const gchar * text) { gchar *tmp = NULL; gchar *tmp2 = NULL; gchar *tmp3 = NULL; if (text == NULL) { return NULL; } if (re_break == NULL) { re_break = g_regex_new ("#BREAK#", G_REGEX_MULTILINE, 0, NULL); } if (re_semi == NULL) { re_semi = g_regex_new ("#SEMI#", G_REGEX_MULTILINE, 0, NULL); } if (re_amp == NULL) { re_amp = g_regex_new ("&", G_REGEX_MULTILINE, 0, NULL); } tmp = g_regex_replace (re_break, text, -1, 0, "\n", 0, NULL); tmp2 = g_regex_replace (re_semi, tmp, -1, 0, ":", 0, NULL); tmp3 = g_regex_replace (re_amp, tmp2, -1, 0, "&", 0, NULL); return tmp3; } lyricue-4.0.12/src/lyricue_display.c0000664000000000000000000012373313053456656014324 0ustar /*************************************************************************** * lyricue_display.c * * Tue Jul 20 15:49:24 2010 * Copyright 2010 Chris Debenham * ****************************************************************************/ /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA */ #include "lyricue_display.h" extern MYSQL *lyricDb; extern MYSQL *mediaDb; extern MYSQL *bibleDb; extern gchar *bible_name; extern gchar *bible_table; extern gfloat stage_width; extern gfloat stage_height; extern gint bg_is_video; extern ClutterActor *background; #if CLUTTER_GST_MAJOR_VERSION >= 3 extern ClutterGstPlayback *gstplayer; #endif gint blanked_state = BLANK_NONE; gchar *default_bg = NULL; gchar *current_bg = NULL; gchar *temp_bg = NULL; int current_item = 0; int current_list = 0; int old_list = 0; GHashTable *config = NULL; GHashTable *miniviews = NULL; // Command line options gboolean windowed = FALSE; gboolean debugging = FALSE; gboolean name_at_top = TRUE; gboolean details_at_top = FALSE; gboolean info_on_all_pages = TRUE; int server_port = 2346; gchar *server_ip = ""; gchar *server_type = "normal"; int server_mode = NORMAL_SERVER; gchar *dbhostname = "localhost"; gchar *geometry = NULL; gchar *profile = NULL; gchar *extra_data = NULL; unsigned long windowid = 0; gchar hostname[32]; gchar ipaddr[16] = "127.0.0.1\0"; guint tracker_timeout = 0; static GOptionEntry entries[] = { {"type", 't', 0, G_OPTION_ARG_STRING, &server_type, "Server type", "[normal | preview | miniview | simple | headless ] "}, {"profile", 'p', 0, G_OPTION_ARG_STRING, &profile, "Profile", "profile_name"}, {"remote", 'r', 0, G_OPTION_ARG_STRING, &dbhostname, "Database hostname", "hostname"}, {"geometry", 'g', 0, G_OPTION_ARG_STRING, &geometry, "Window Geometry", "geom"}, {"listen", 'l', 0, G_OPTION_ARG_INT, &server_port, "Port to listen on", "port_number"}, {"ipaddr", 'i', 0, G_OPTION_ARG_STRING, &server_ip, "IP to listen on", "ip_number"}, {"miniview", 'm', 0, G_OPTION_ARG_INT, &windowid, "Embed in windowid", "windowid"}, {"extra", 'e', 0, G_OPTION_ARG_STRING, &extra_data, "Extra data to report to avahi", "data"}, {"window", 'w', 0, G_OPTION_ARG_NONE, &windowed, "Run in a window", NULL}, {"debug", 'd', 0, G_OPTION_ARG_NONE, &debugging, "Enable debug output", NULL}, {NULL} }; int main (int argc, char *argv[]) { unsetenv ("LIBGL_ALWAYS_INDIRECT"); setenv ("CLUTTER_DISABLE_MIPMAPPED_TEXT", "1", 0); bindtextdomain (GETTEXT_PACKAGE, NULL); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); srand(time(NULL)); g_type_init (); GError *error = NULL; GOptionContext *context; context = g_option_context_new ("- Lyricue display"); g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE); g_option_context_set_ignore_unknown_options (context, TRUE); if (!g_option_context_parse (context, &argc, &argv, &error)) { g_print ("option parsing failed: %s\n", error->message); exit (1); } int ret = db_select (); if (ret) { // Always true } gethostname(hostname,sizeof(hostname)); if (g_strcmp0(server_ip,"") != 0 ) { g_snprintf(ipaddr,sizeof(ipaddr),"%s",server_ip); } else { // Find the external IP address (by finding default route) FILE *f; char line[100] , *p , *c; f = fopen("/proc/net/route" , "r"); while(fgets(line , 100 , f)) { p = strtok(line , " \t"); c = strtok(NULL , " \t"); if(p!=NULL && c!=NULL) { if(strcmp(c , "00000000") == 0) { //printf("Default interface is : %s \n" , p); break; } } } int fm = AF_INET; struct ifaddrs *ifaddr, *ifa; int family , s; if (getifaddrs(&ifaddr) == -1) { perror("getifaddrs"); exit(EXIT_FAILURE); } for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) { if (ifa->ifa_addr == NULL) { continue; } family = ifa->ifa_addr->sa_family; if(strcmp( ifa->ifa_name , p) == 0) { if (family == fm) { s = getnameinfo( ifa->ifa_addr, (family == AF_INET) ? sizeof(struct sockaddr_in) : sizeof(struct sockaddr_in6) , ipaddr, sizeof(ipaddr), NULL , 0 , NI_NUMERICHOST); if (s != 0) { printf("getnameinfo() failed: %s\n", gai_strerror(s)); exit(EXIT_FAILURE); } } } } freeifaddrs(ifaddr); } do_query(FALSE, lyricDb, "SELECT profile FROM profiles WHERE host='%s'", hostname); MYSQL_ROW row; MYSQL_RES *result; result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); if (row != NULL) { if (profile == NULL) { profile=g_strdup(row[0]); } } else { if (profile == NULL) { profile = g_strdup("Default"); } do_query(FALSE, lyricDb, "INSERT INTO profiles (host, profile) VALUES ('%s', '%s')", hostname, profile); } load_configuration (lyricDb); bible_load ((gchar *) g_hash_table_lookup (config, "DefBible")); // Setup network GSocketService *service = g_socket_service_new (); GInetAddress *address = g_inet_address_new_any (G_SOCKET_FAMILY_IPV4); if (!g_socket_listener_add_inet_port (G_SOCKET_LISTENER (service), server_port, NULL, NULL)) { l_debug ("Unable to listen on port %d", server_port); server_port = g_socket_listener_add_any_inet_port (G_SOCKET_LISTENER (service), NULL, NULL); if (server_port == 0) { return EXIT_FAILURE; } } l_debug("Listening on port %d", server_port); g_object_unref (address); g_socket_service_start (service); g_signal_connect (service, "incoming", G_CALLBACK (new_connection), NULL); if (g_strcmp0(server_type, "headless") != 0) { ret = create_main_window (argc, argv); } gchar *showinfochar; showinfochar = (gchar *) g_hash_table_lookup (config, "ShowInfoLocation"); if (showinfochar != NULL) { if (g_strcmp0(showinfochar, "top") == 0){ name_at_top = TRUE; details_at_top = TRUE; } else if (g_strcmp0(showinfochar, "split") == 0){ name_at_top = TRUE; details_at_top = FALSE; } else if (g_strcmp0(showinfochar, "bottom") == 0){ name_at_top = FALSE; details_at_top = FALSE; } } g_free(showinfochar); gchar *infopageschar; infopageschar = (gchar *) g_hash_table_lookup (config, "ShowInfoPages"); if (infopageschar != NULL && g_strcmp0(infopageschar, "all") == 0) { info_on_all_pages = TRUE; } else { info_on_all_pages = FALSE; } g_free(infopageschar); // Publish to avahi (zeroconf/bonjour) publish_avahi(server_port, server_type); if (g_strcmp0(server_type, "normal") == 0) { server_mode=NORMAL_SERVER; } else if (g_strcmp0(server_type, "preview") == 0) { server_mode=PREVIEW_SERVER; } else if (g_strcmp0(server_type, "miniview") == 0) { server_mode=MINIVIEW_SERVER; } else if (g_strcmp0(server_type, "simple") == 0) { server_mode=SIMPLE_SERVER; } else if (g_strcmp0(server_type, "headless") == 0) { server_mode=HEADLESS_SERVER; } // Create tracker update timeout tracker_timeout = g_timeout_add_seconds (1, (GSourceFunc) update_tracker, NULL); // Setup tracker entry in DB do_query (FALSE, lyricDb, "DELETE FROM status WHERE host='%s:%d'",hostname, server_port); do_query (FALSE, lyricDb, "INSERT INTO status SET host='%s:%d',ref=0,title='', profile='%s', type='%s#%s', ip='%s'",hostname, server_port, profile, server_type, extra_data, ipaddr); if (server_mode==NORMAL_SERVER) { clutter_main (); } else { gtk_main (); } do_query (FALSE, lyricDb, "UPDATE status SET lastupdate = 0 WHERE host=\"%s:%d\"", hostname, server_port); unpublish_avahi(); ret = db_deselect (); l_debug("Exiting"); return EXIT_SUCCESS; } gboolean network_read (GIOChannel * source, GIOCondition cond, gpointer data) { GString *s = g_string_new (NULL); GError *error = NULL; GIOStatus ret = g_io_channel_read_line_string (source, s, NULL, &error); if (ret == G_IO_STATUS_EOF) { l_debug ("eof"); return FALSE; } else if (ret == G_IO_STATUS_ERROR) { g_warning ("Error reading: %s\n", error->message); // Drop last reference on connection g_object_unref (data); // Remove the event source return FALSE; } else { s->str = g_strstrip (s->str); if (g_utf8_strlen (s->str, -1) > 0) { handle_command (source, s->str); } g_io_channel_shutdown (source, TRUE, NULL); g_object_unref (data); return FALSE; } return TRUE; } gboolean new_connection (GSocketService * service, GSocketConnection * connection, GObject * source_object, gpointer user_data) { GSocketAddress *sockaddr = g_socket_connection_get_remote_address (connection, NULL); GInetAddress *addr = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (sockaddr)); guint16 port = g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (sockaddr)); l_debug ("New Connection from %s:%d", g_inet_address_to_string (addr), port); g_object_ref (connection); GSocket *socket = g_socket_connection_get_socket (connection); gint fd = g_socket_get_fd (socket); GIOChannel *channel = g_io_channel_unix_new (fd); g_io_add_watch (channel, G_IO_IN, (GIOFunc) network_read, connection); return TRUE; } void handle_command (GIOChannel * source, const char *command) { l_debug ("Received: %s", command); GString *returnstring = NULL; gchar **line = g_strsplit (command, ":", 2); update_miniview (command); if (line[1] != NULL) { line[0] = g_utf8_strdown (line[0], -1); if (g_strcmp0 (line[0], "preview") == 0) { do_preview (line[1]); } else if (g_strcmp0 (line[0], "status") == 0) { returnstring = do_status (); } else if (g_strcmp0 (line[0], "dbsnapshot") == 0) { do_dbsnapshot (line[1]); } else if (g_strcmp0 (line[0], "plsnapshot") == 0) { do_plsnapshot (line[1]); returnstring = g_string_new("done"); } else if (g_strcmp0 (line[0], "snapshot") == 0) { returnstring = do_snapshot (line[1]); } else if (g_strcmp0 (line[0], "reconfig") == 0) { do_reconfig (); } else if (g_strcmp0 (line[0], "backdrop") == 0) { do_backdrop (line[1]); } else if (g_strcmp0 (line[0], "blank") == 0) { do_blank (line[1]); } else if (g_strcmp0 (line[0], "change_to_db") == 0) { do_change_to_db (line[1]); } else if (g_strcmp0 (line[0], "next_point") == 0) { do_next_point (line[1]); } else if (g_strcmp0 (line[0], "get") == 0) { returnstring = do_get (line[1]); } else if (g_strcmp0 (line[0], "display") == 0) { do_display (line[1],FALSE); } else if (g_strcmp0 (line[0], "osd") == 0) { do_osd (line[1]); } else if (g_strcmp0 (line[0], "media") == 0) { do_media (line[1]); } else if (g_strcmp0 (line[0], "fade") == 0) { do_fade (line[1]); } else if (g_strcmp0 (line[0], "blur") == 0) { do_blur (line[1]); } else if (g_strcmp0 (line[0], "save") == 0) { do_save (line[1]); } else if (g_strcmp0 (line[0], "query") == 0) { returnstring = do_query_json (line[1]); } else if (g_strcmp0 (line[0], "bible") == 0) { returnstring = do_bible(line[1]); } else if (g_strcmp0 (line[0], "profile") == 0) { do_profile_change(line[1]); } } g_strfreev (line); if (returnstring != NULL) { if ((returnstring->len > 1024) && (g_strrstr_len(returnstring->str, returnstring->len, " ") == NULL)){ l_debug ("The status message sent is (%d chars): [uuencoded data]", returnstring->len); } else { l_debug ("The status message sent is (%d chars): %s", returnstring->len, returnstring->str); } gsize bytes_written = 0; GError *err = NULL; GIOStatus res = g_io_channel_write_chars (source, returnstring->str, returnstring->len, &bytes_written, &err); if (res) { // Ignore it } gsize total = bytes_written; // Repeat until all sent - needed since socket is non-blocking while (bytes_written < returnstring->len) { g_string_erase(returnstring, 0, bytes_written); res = g_io_channel_write_chars (source, returnstring->str, returnstring->len, &bytes_written, &err); total = total + bytes_written; } l_debug("Sent %d chars", total); if (err != NULL) { l_debug("Error: %s",err->message); g_error_free(err); } g_string_free (returnstring, TRUE); /* force flushing of the write buffer */ if (source !=NULL) { res = g_io_channel_flush (source, NULL); } } update_tracker (); } void do_media (const char *options) { if (bg_is_video) { gchar **line = g_strsplit (options, ":", 2); if (g_ascii_strncasecmp (line[0], "pause", 5) == 0) { media_pause (); } else if (g_ascii_strncasecmp (line[0], "skip", 4) == 0) { media_skip (atoi (line[1])); } g_strfreev (line); } } void do_fade (const char *options) { fade_backdrop (atoi (options)); } void do_blur (const char *options) { blur_backdrop (atoi (options)); } void do_preview (const char *options) { gchar **line = g_strsplit (options, ":", 2); gboolean wrap = TRUE; unblank (); if (g_strcmp0 (line[0], "ignore") != 0) { gchar **extras = g_strsplit (parse_special (line[0]), "\n", 4); if ((g_strv_length (extras) == 6) && (g_strcmp0 (extras[3], "nowrap") == 0)) { wrap = FALSE; } set_headtext (parse_special (extras[0]), 0, 1); if (g_strv_length (extras) >= 3) { GString *footer = g_string_new (NULL); if (g_utf8_strlen (extras[2], 10) != 0) { g_string_printf (footer, "%s %s - %s", gettext ("Written by "), extras[1], extras[2]); } else { if (g_utf8_strlen (extras[1], 10) != 0) { g_string_printf (footer, "%s %s", gettext ("Written by "), extras[1]); } else { g_string_assign (footer, ""); } } set_foottext (footer->str, 0, 1); g_string_free (footer, TRUE); } g_strfreev (extras); } set_maintext (parse_special (line[1]), 0, wrap); g_strfreev (line); } GString * do_status () { l_debug ("Return status"); GString *ret = g_string_new (NULL); g_string_printf (ret, "Status,W:%.0f,H:%.0f,F:%s,T:%s,B:%s\n", stage_width, stage_height, (gchar *) g_hash_table_lookup (config, "Main"), bible_table, bible_name); return ret; } GString * do_snapshot (const char *options) { l_debug ("do_snapshot"); gchar **line = g_strsplit (options, ":", 2); int width=0; if (line[1] != NULL) { width=atoi(line[1]); } GString *ret = take_snapshot (line[0], width); g_strfreev (line); return ret; } void do_dbsnapshot (const char *options) { l_debug ("do_snapshot"); gchar **line = g_strsplit (options, ":", 2); take_dbsnapshot (atoi(line[0])); g_strfreev (line); } void do_plsnapshot (const char *options) { l_debug ("do_snapshot"); gchar **line = g_strsplit (options, ":", 2); playlist_snapshot(atoi(line[0])); g_strfreev (line); } void do_reconfig () { l_debug ("do_reconfig"); load_configuration (lyricDb); } void do_backdrop (const char *options) { l_debug ("do_backdrop: %s", options); if (server_mode != SIMPLE_SERVER) { gchar **line = g_strsplit (options, ":", 2); temp_bg = NULL; default_bg = parse_special (line[0]); change_backdrop (default_bg, TRUE, DEFAULT); g_strfreev (line); } else { if (background != NULL) background = destroy_actor(background); } } void unblank () { if (blanked_state == BLANK_BG) { change_backdrop (temp_bg, TRUE, DEFAULT); } blanked_state = BLANK_NONE; } void do_blank (const char *options) { l_debug ("do_blank: %s", options); gchar **line = g_strsplit (options, ":", 2); if (strlen (options) <= 1) { options = NULL; } if (blanked_state == BLANK_BG) { l_debug ("Re-show text"); do_display ("current",FALSE); } else if ((blanked_state == BLANK_TEXT) && options != NULL) { l_debug ("clear text and set BG"); temp_bg = current_bg; change_backdrop (line[0], TRUE, DEFAULT); blanked_state = BLANK_BG; } else if ((blanked_state == BLANK_TEXT) && options == NULL) { l_debug ("Re-show text - 2"); do_display ("current",FALSE); } else if (options != NULL) { l_debug ("clear text and set BG - 2"); temp_bg = current_bg; change_backdrop (line[0], TRUE, DEFAULT); set_maintext ("", 0, FALSE); set_headtext ("", 0, FALSE); set_foottext ("", 0, FALSE); blanked_state = BLANK_BG; } else { l_debug ("Clear text"); set_maintext ("", 0, FALSE); set_headtext ("", 0, FALSE); set_foottext ("", 0, FALSE); blanked_state = BLANK_TEXT; } g_strfreev (line); } void do_change_to_db (const char *options) { l_debug ("do_change_to_db: %s", options); bible_load (options); } void do_next_point (const char *options) { l_debug ("do_next_point not implemented"); } void do_osd (const char *options) { l_debug ("do_osd"); if (options != NULL) { gchar **line = g_strsplit (options, ":", 2); int speed = 10000; if (g_strcmp0 (line[0], "slow") == 0) { speed = 20000; } else if (g_strcmp0 (line[0], "fast") == 0) { speed = 5000; } else if (g_strcmp0 (line[0], "default") == 0) { speed = 10000; } else { speed = atoi (line[0]); } gchar *text = parse_special (line[1]); set_osd (speed, text); } } void do_display (const char *options, const int quick_show) { l_debug ("do_display"); if (options != NULL) { gchar **line = g_strsplit (options, ":", 2); unblank (); MYSQL_ROW row; MYSQL_RES *result; gboolean bg_changed = FALSE; do_query (FALSE, lyricDb, "SELECT playlist FROM playlist WHERE playorder=%d", current_item); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); if (row != NULL) { current_list = atoi (row[0]); } mysql_free_result (result); gchar *command = g_utf8_strdown (line[0], -1); if (g_strcmp0 (command, "playlist") == 0) { current_list = atoi (line[1]); } else if (g_strcmp0 (command, "current") == 0) { // Clear text and then redisplay same page set_maintext ("", 0, FALSE); set_headtext ("", 0, FALSE); set_foottext ("", 0, FALSE); if (g_strcmp0 (line[1], "nobg") == 0) { bg_changed = TRUE; } } else if (g_strcmp0 (command, "next_page") == 0) { do_query (FALSE, lyricDb, "SELECT MIN(playorder) FROM playlist WHERE playlist=%d AND playorder > %d ORDER BY playorder", current_list, current_item); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row[0]) { // Show next page current_item = atoi (row[0]); } else { // End of song reached gchar **loop = g_strsplit (line[1], ";", 2); if (g_strcmp0 (loop[0], "loop") == 0) { // Looping int loop_parent = 0; if (loop[1] != NULL) { loop_parent = atoi (loop[1]); } if (loop_parent == 0) { l_debug ("Looping a song, back to page 1"); do_query (FALSE, lyricDb, "SELECT MIN(playorder) FROM playlist WHERE playlist=%d", current_list); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row[0] != NULL) { current_item = atoi (row[0]); } } else { l_debug ("Looping a sublist"); do_query (FALSE, lyricDb, "SELECT MIN(p1.playorder) FROM playlist AS p1, playlist AS p2 WHERE p1.playorder>p2.playorder AND p2.type='play' AND p2.data=%d AND p1.playlist=%d", current_list, loop_parent); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row[0] != NULL) { current_item = atoi (row[0]); } else { // Loop back to top of parent do_query (FALSE, lyricDb, "SELECT MIN(playorder) FROM playlist WHERE playlist=%d", loop_parent); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row[0] != NULL) { current_item = atoi (row[0]); } } } } else { // Jump to next song do_display ("next_song:0",FALSE); return; } } } else if (g_strcmp0 (command, "prev_page") == 0) { do_query (FALSE, lyricDb, "SELECT MAX(playorder) FROM playlist WHERE playlist=%d AND playorder < %d ORDER BY playorder", current_list, current_item); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row[0]) { current_item = atoi (row[0]); } else { if (g_strcmp0 (line[1], "loop") == 0) { // Loop back to end of playlist do_query (FALSE, lyricDb, "SELECT MAX(playorder) FROM playlist WHERE playlist=%d", current_list); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row[0] != NULL) { current_item = atoi (row[0]); } } else { // Jump back to last page of previous song do_query(FALSE, lyricDb, "SELECT MAX(playorder) FROM playlist " "WHERE playlist=" "(SELECT data FROM playlist " " WHERE playorder= " " (SELECT MAX(playorder) FROM playlist " " WHERE playorder < " " (SELECT playorder FROM playlist " " WHERE type='play' AND data=%d) " " AND playlist = " " (SELECT playlist FROM playlist " " WHERE type='play' AND data=%d)))", current_list, current_list); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row[0] != NULL) { current_item = atoi (row[0]); } } } } else if (g_strcmp0 (command, "next_song") == 0) { do_query (FALSE, lyricDb, "SELECT a.playorder,a.playlist FROM playlist AS a, playlist AS b WHERE a.data=b.playlist AND a.type=\"play\" AND b.playorder=%d", current_item); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row && (row[0] != NULL)) { current_item = atoi (row[0]); current_list = atoi (row[1]); } do_query (FALSE, lyricDb, "SELECT MIN(playorder) FROM playlist WHERE playorder > %d AND playlist=%d", current_item, current_list); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); if (row[0] != NULL) { current_item = atoi (row[0]); } mysql_free_result (result); } else if (g_strcmp0 (command, "prev_song") == 0) { do_query (FALSE, lyricDb, "SELECT a.playorder,a.playlist FROM playlist AS a, playlist AS b WHERE a.data=b.playlist AND a.type=\"play\" AND b.playorder=%d", current_item); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row && (row[0] != NULL)) { current_item = atoi (row[0]); current_list = atoi (row[1]); } do_query (FALSE, lyricDb, "SELECT MAX(playorder) FROM playlist WHERE playorder < %d AND playlist=%d", current_item, current_list); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row[0] != NULL) { current_item = atoi (row[0]); } } else if (g_strcmp0 (command, "page") == 0) { do_query (FALSE, lyricDb, "SELECT playorder FROM playlist WHERE playlist=%d", current_list); result = mysql_store_result (lyricDb); int count = 0; while ((count < atoi (line[1])) && (row = mysql_fetch_row (result))) { count++; } if (row && (row[0] != NULL)) { current_item = atoi (row[0]); } } else { current_item = atoi (command); do_query (FALSE, lyricDb, "SELECT playlist FROM playlist WHERE playorder=%d", current_item); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); if (row != NULL) { current_list = atoi (row[0]); } mysql_free_result (result); } do_query (FALSE, lyricDb, "SELECT type,data,transition FROM playlist WHERE playorder=%d", current_item); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); if (row != NULL) { gchar *type = g_strdup (row[0]); gchar *data = g_strdup (row[1]); gchar *lyrics = ""; gchar *header = ""; gchar *footer = ""; gboolean wrap = TRUE; int transition = atoi (row[2]); if (quick_show) { transition = NO_EFFECT; } if (g_strcmp0 (type, "back") == 0) { default_bg = g_strdup (data); if (server_mode == NORMAL_SERVER) { change_backdrop (default_bg, TRUE, transition); bg_changed = TRUE; } g_strfreev (line); } else if (g_strcmp0 (type, "file") == 0) { change_backdrop (data, FALSE, transition); bg_changed = TRUE; g_strfreev (line); } else if (g_strcmp0 (type, "imag") == 0) { change_backdrop (data, FALSE, transition); bg_changed = TRUE; } else if (g_strcmp0 (type, "vers") == 0) { do_query (FALSE, lyricDb, "SELECT title FROM playlist,playlists WHERE playlist.playlist=playlists.id AND playorder=%d", current_item); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); gchar **selected = g_strsplit (data, ":", 2); gchar *verse = NULL; if (selected[1] == NULL) { selected = g_strsplit (row[0], ":", 3); gchar **datasplt = g_strsplit (data, "-", 2); GString *verseref = g_string_new (NULL); g_string_printf (verseref, "%s:%s:%s-%s:%s", selected[0], selected[1], datasplt[0], selected[1], datasplt[1]); verse = do_grab_verse (g_string_free (verseref, FALSE)); } else { // Broken } if (verse != NULL) { lyrics = g_strdup (verse); } header = g_strdup (row[0]); footer = g_strdup (bible_name); wrap = TRUE; } else if ((g_strcmp0 (type, "play") == 0) || (g_strcmp0 (type, "sub") == 0)) { do_query (FALSE, lyricDb, "SELECT playorder FROM playlist WHERE playlist=%s ORDER BY playorder", data); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); do_display (row[0],FALSE); return; } else { // Song page do_query (FALSE, lyricDb, "SELECT title,artist,lyrics,copyright FROM lyricMain AS l, page AS pa WHERE (pa.songid=l.id OR pa.songid=-l.id) AND pa.pageid=%s", data); result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row != NULL) { gchar *title = g_strdup (row[0]); gchar *artist = g_strdup (row[1]); gchar *lyrictmp = g_strdup (row[2]); gchar *copyright = g_strdup (row[3]); GString *foot = g_string_new (NULL); if (g_utf8_strlen (artist, 10) != 0) { g_string_printf (foot, "Written by %s", artist); } if (g_utf8_strlen (copyright, 10) != 0) { if (g_ascii_strncasecmp(copyright,"Preset",6) == 0) { copyright=(gchar *) g_hash_table_lookup (config,copyright); } g_string_append_printf (foot, " - %s", copyright); } lyrics = g_strdup (lyrictmp); header = g_strdup (title); footer = g_strdup (foot->str); g_string_free (foot, TRUE); } } // Look for associated background image if (!bg_changed) { if (server_mode == SIMPLE_SERVER) { if (background != NULL) clutter_actor_destroy(background); } else { int res = do_query (FALSE, lyricDb, "SELECT imagename FROM associations WHERE playlist=%d", current_item); int bg_changed = FALSE; if (res == 0) { result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); if (row != NULL) { change_backdrop (row[0], TRUE, transition); bg_changed = TRUE; } mysql_free_result (result); } if (!bg_changed) { res = do_query (FALSE, lyricDb, "SELECT a.imagename,q.data FROM associations as a, playlist AS p, playlist AS q WHERE p.type='play' AND p.data=q.playlist and a.playlist=p.playorder AND q.playorder=%d", current_item); if (res == 0) { result = mysql_store_result (lyricDb); row = mysql_fetch_row (result); mysql_free_result (result); if (row != NULL) { change_backdrop (row[0], TRUE, transition); bg_changed = TRUE; } } } if (!bg_changed && (g_strcmp0 (default_bg, current_bg) != 0)) { l_debug ("Reset bg to default"); change_backdrop (default_bg, TRUE, transition); } } } if (quick_show) { transition = NO_EFFECT; } set_maintext (parse_special (lyrics), transition, wrap); if (info_on_all_pages || (current_list != old_list)) { if (name_at_top && details_at_top) { if (g_strcmp0(footer,"") != 0) { header = g_strconcat(header,"\n",footer,"",NULL); } set_headtext (parse_special (header), transition, wrap); set_foottext ("", transition, wrap); } else if (!name_at_top && !details_at_top) { if (g_strcmp0(footer,"") != 0) { footer = g_strconcat(header,"\n",footer,"",NULL); } set_headtext ("", transition, wrap); set_foottext (parse_special (footer), transition, wrap); } else { set_headtext (parse_special (header), transition, wrap); set_foottext (parse_special (footer), transition, wrap); } } else { set_headtext ("", transition, wrap); set_foottext ("", transition, wrap); } old_list=current_list; } } } gboolean update_tracker () { //l_debug ("Updating tracker"); GString *title = g_string_new (NULL); if (blanked_state == BLANK_BG) { g_string_assign (title, "blank_bg"); } else if (blanked_state == BLANK_TEXT) { g_string_assign (title, "blank_text"); } if (bg_is_video) { #if CLUTTER_GST_MAJOR_VERSION >= 3 g_string_append_printf (title, "%.0f;%.0f;%d", clutter_gst_playback_get_progress (gstplayer) * clutter_gst_playback_get_duration (gstplayer), clutter_gst_playback_get_duration (gstplayer), clutter_gst_player_get_playing (CLUTTER_GST_PLAYER(gstplayer))); #else g_string_append_printf (title, "%.0f;%.0f;%d", clutter_media_get_progress (CLUTTER_MEDIA (background)) * clutter_media_get_duration (CLUTTER_MEDIA (background)), clutter_media_get_duration (CLUTTER_MEDIA (background)), clutter_media_get_playing (CLUTTER_MEDIA (background))); #endif } else { g_string_append (title, "0;0;0"); } do_query (TRUE, lyricDb, "UPDATE status SET ref = %d, title = \"%s\", lastupdate = NOW() WHERE host=\"%s:%d\"", current_item, g_string_free (title, FALSE), hostname, server_port); return TRUE; } void update_miniview (const char *command) { if (server_mode == NORMAL_SERVER || server_mode==HEADLESS_SERVER) { l_debug ("miniview time"); GHashTableIter iter; gpointer key, value; g_hash_table_iter_init(&iter, miniviews); while (g_hash_table_iter_next(&iter, &key, &value)) { l_debug("Updating miniview %s on %s",key,value); GSocketClient *client = g_socket_client_new (); GSocketConnection *conn = g_socket_client_connect_to_host (client, value, 2348, NULL, NULL); if (conn != NULL) { GOutputStream *out = g_io_stream_get_output_stream (G_IO_STREAM (conn)); g_output_stream_write (out, command, strlen (command), NULL, NULL); g_object_unref (conn); } g_object_unref (client); } } } void do_save (const char *options) { l_debug ("Save as presentation"); gchar **line = g_strsplit (options, ":", 2); gchar *cmd = g_strdup_printf ("playlist:%d", atoi (line[0])); do_display (cmd,TRUE); do_display ("display:0",TRUE); do_display ("next_page:0",TRUE); g_free (cmd); int count = 1; int last_item = -1; while (last_item < current_item) { l_debug ("%d", current_item); gchar *filename = g_strdup_printf ("%s/slide-%d.jpg", line[1], count); last_item = current_item; do_display ("next_page:0",TRUE); take_snapshot (filename,0); g_free (filename); count++; } g_strfreev (line); } GString * do_query_json (const char *options) { l_debug ("Query with response as JSON"); gchar **line = g_strsplit (options, ":", 2); if (line[1] != NULL) { line[0] = g_utf8_strdown (line[0], -1); MYSQL_ROW row; MYSQL_RES *result; if (g_strcmp0(line[0],"lyricdb") == 0) { do_query (FALSE, lyricDb,"%s",parse_special(line[1])); result = mysql_store_result (lyricDb); } else if (g_strcmp0(line[0],"mediadb") == 0) { do_query (FALSE, mediaDb,"%s",parse_special(line[1])); result = mysql_store_result (mediaDb); } else if (g_strcmp0(line[0],"bibledb") == 0) { do_query (FALSE, bibleDb,"%s",parse_special(line[1])); result = mysql_store_result (bibleDb); } else { g_strfreev (line); return NULL; } if (result == NULL) return NULL; JsonGenerator *generator = json_generator_new(); JsonNode *rootnode = json_node_new(JSON_NODE_OBJECT); JsonObject *resultnode = json_object_new(); JsonArray *resultarray = json_array_new(); unsigned int num_fields = mysql_num_fields(result); MYSQL_FIELD *fields; fields = mysql_fetch_fields(result); unsigned int i; while ((row = mysql_fetch_row (result))) { JsonObject *newobject = json_object_new(); for(i = 0; i < num_fields; i++) { json_object_set_string_member(newobject,fields[i].name,row[i] ? row[i] : "NULL"); } json_array_add_object_element(resultarray, newobject); } mysql_free_result (result); json_object_set_array_member(resultnode, "results",resultarray); json_node_set_object(rootnode,resultnode); json_generator_set_root(generator, rootnode); gchar *str = json_generator_to_data (generator,NULL); GString *ret = g_string_new(str); json_array_unref (resultarray); g_object_unref (generator); g_strfreev (line); return ret; } g_strfreev (line); return NULL; } void do_profile_change(const char *options) { gchar **line = g_strsplit (options, ":", 2); if (line[0] != NULL) { profile = g_strdup(line[0]); load_configuration(); update_service_profile(); } g_strfreev (line); } lyricue-4.0.12/intltool-merge.in0000664000000000000000000000000013053456657013437 0ustar lyricue-4.0.12/build-aux/0000775000000000000000000000000013053456657012052 5ustar lyricue-4.0.12/build-aux/depcomp0000777000000000000000000000000013053456657021153 2/usr/share/automake-1.15/depcompustar lyricue-4.0.12/build-aux/compile0000777000000000000000000000000013053456657021155 2/usr/share/automake-1.15/compileustar lyricue-4.0.12/build-aux/config.sub0000777000000000000000000000000013053456657022167 2/usr/share/automake-1.15/config.subustar lyricue-4.0.12/build-aux/ltmain.sh0000664000000000000000000117147413053456657013711 0ustar #! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2014-01-03.01 # libtool (GNU libtool) 2.4.6 # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . PROGRAM=libtool PACKAGE=libtool VERSION="2.4.6 Debian-2.4.6-2" package_revision=2.4.6 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2015-01-20.17; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # Copyright (C) 2004-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # As a special exception to the GNU General Public License, if you distribute # this file as part of a program or library that is built using GNU Libtool, # you may include this file under the same distribution terms that you use # for the rest of that program. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some retarded systems that use ';' as a PATH separator! if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' # Sed substitution that converts a w32 file name or path # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_double_quote_subst, that '$' was protected from # expansion. Since each input '\' is now two '\'s, look for any number # of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath=$0 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # We should try to minimise forks, especially on Windows where they are # unreasonably slow, so skip the feature probes when bash or zsh are # being used: if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then : ${_G_HAVE_ARITH_OP="yes"} : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;; esac fi # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # useable or anything else if it does not work. test -z "$_G_HAVE_PLUSEQ_OP" \ && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ && _G_HAVE_PLUSEQ_OP=yes if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1+=\\ \$func_quote_for_eval_result" }' else func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1=\$$1\\ \$func_quote_for_eval_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT # -------------------------------------------------------- # Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_mkdir_p_IFS # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # func_normal_abspath PATH # ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` while :; do # Processed it all yet? if test / = "$func_normal_abspath_tpath"; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result"; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=$func_dirname_result if test -z "$func_relative_path_tlibdir"; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_for_eval ARG... # -------------------------- # Aesthetically quote ARGs to be evaled later. # This function returns two values: # i) func_quote_for_eval_result # double-quoted, suitable for a subsequent eval # ii) func_quote_for_eval_unquoted_result # has all characters that are still active within double # quotes backslashified. func_quote_for_eval () { $debug_cmd func_quote_for_eval_unquoted_result= func_quote_for_eval_result= while test 0 -lt $#; do case $1 in *[\\\`\"\$]*) _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; *) _G_unquoted_arg=$1 ;; esac if test -n "$func_quote_for_eval_unquoted_result"; then func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" else func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" fi case $_G_unquoted_arg in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and variable expansion # for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_quoted_arg=\"$_G_unquoted_arg\" ;; *) _G_quoted_arg=$_G_unquoted_arg ;; esac if test -n "$func_quote_for_eval_result"; then func_append func_quote_for_eval_result " $_G_quoted_arg" else func_append func_quote_for_eval_result "$_G_quoted_arg" fi shift done } # func_quote_for_expand ARG # ------------------------- # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { $debug_cmd case $1 in *[\\\`\"]*) _G_arg=`$ECHO "$1" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; *) _G_arg=$1 ;; esac case $_G_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_arg=\"$_G_arg\" ;; esac func_quote_for_expand_result=$_G_arg } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_for_expand "$_G_cmd" eval "func_notquiet $func_quote_for_expand_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_for_expand "$_G_cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_tr_sh # ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # Set a version string for this script. scriptversion=2014-01-07.03; # UTC # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # Copyright (C) 2010-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# warranty; '. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # to the main code. A hook is just a named list of of function, that can # be run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of functions called by FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It is assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook funcions.n" ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do eval $_G_hook '"$@"' # store returned options list back into positional # parameters for next 'cmd' execution. eval _G_hook_result=\$${_G_hook}_result eval set dummy "$_G_hook_result"; shift done func_quote_for_eval ${1+"$@"} func_run_hooks_result=$func_quote_for_eval_result } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list in your hook function, remove any # options that you action, and then pass back the remaining unprocessed # options in '_result', escaped suitably for # 'eval'. Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # func_quote_for_eval ${1+"$@"} # my_options_prep_result=$func_quote_for_eval_result # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # # Note that for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # ;; # *) set dummy "$_G_opt" "$*"; shift; break ;; # esac # done # # func_quote_for_eval ${1+"$@"} # my_silent_option_result=$func_quote_for_eval_result # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # # func_quote_for_eval ${1+"$@"} # my_option_validation_result=$func_quote_for_eval_result # } # func_add_hook func_validate_options my_option_validation # # You'll alse need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd func_options_prep ${1+"$@"} eval func_parse_options \ ${func_options_prep_result+"$func_options_prep_result"} eval func_validate_options \ ${func_parse_options_result+"$func_parse_options_result"} eval func_run_hooks func_options \ ${func_validate_options_result+"$func_validate_options_result"} # save modified positional parameters for caller func_options_result=$func_run_hooks_result } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propogate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before # returning. func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= func_run_hooks func_options_prep ${1+"$@"} # save modified positional parameters for caller func_options_prep_result=$func_run_hooks_result } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd func_parse_options_result= # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. func_run_hooks func_parse_options ${1+"$@"} # Adjust func_parse_options positional parameters to match eval set dummy "$func_run_hooks_result"; shift # Break out of the loop if we already parsed every option. test $# -gt 0 || break _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) test $# = 0 && func_missing_arg $_G_opt && break case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} func_parse_options_result=$func_quote_for_eval_result } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" func_run_hooks func_validate_options ${1+"$@"} # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE # save modified positional parameters for caller func_validate_options_result=$func_run_hooks_result } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables after # splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} test "x$func_split_equals_lhs" = "x$1" \ && func_split_equals_rhs= }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # func_split_short_opt SHORTOPT # ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /(C)/!b go :more /\./!{ N s|\n# | | b more } :go /^# Written by /,/# warranty; / { s|^# || s|^# *$|| s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| p } /^# Written by / { s|^# || p } /^warranty; /q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.4.6' # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { $debug_cmd $warning_func ${1+"$@"} } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --mode=MODE use operation mode MODE --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. When passed as first option, '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. Try '$progname --help --mode=MODE' for a more detailed description of MODE. When reporting a bug, please describe a test case to reproduce it and include the following information: host-triplet: $host shell: $SHELL compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) version: $progname $scriptversion Debian-2.4.6-2 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." exit 0 } # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func__fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } # func_config # ----------- # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # ------------- # Display the features supported by this script. func_features () { echo "host: $host" if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag TAGNAME # ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname=$1 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf=/$re_begincf/,/$re_endcf/p # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_preserve_dup_deps=false opt_quiet=false nonopt= preserve_args= # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Pass back the list of options. func_quote_for_eval ${1+"$@"} libtool_options_prep_result=$func_quote_for_eval_result } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $_G_opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} libtool_parse_options_result=$func_quote_for_eval_result } func_add_hook func_parse_options libtool_parse_options # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; then func_error "unrecognized option '-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help=$help help="Try '$progname --help --mode=$opt_mode' for more information." } # Pass back the unparsed argument list func_quote_for_eval ${1+"$@"} libtool_validate_options_result=$func_quote_for_eval_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test yes = "$lalib_p" } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # 'FILE.' does not work on cygwin managed mounts. func_source () { $debug_cmd case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $debug_cmd if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=$1 if test yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; then write_oldobj=\'$3\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $debug_cmd # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $debug_cmd if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $debug_cmd if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result=$1 fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $debug_cmd if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result=$3 fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $debug_cmd case $4 in $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $debug_cmd $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $debug_cmd case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result=$1 } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $debug_cmd if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd=func_convert_path_$func_stripname_result fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $debug_cmd func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result=$1 } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_mode_compile arg... func_mode_compile () { $debug_cmd # Get the compilation command and the source file. base_compile= srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg=$arg arg_mode=normal ;; target ) libobj=$arg arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs=$IFS; IFS=, for arg in $args; do IFS=$save_ifs func_append_quoted lastarg "$arg" done IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg=$srcfile srcfile=$arg ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj=$func_basename_result } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname=$func_basename_result xdir=$func_dirname_result lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test no = "$compiler_c_o"; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext lockfile=$output_obj.lock else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a '.o' file suitable for static linking -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix '.c' with the library object suffix, '.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the '--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE use a list of object files found in FILE to specify objects -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with '-') are ignored. Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in '.la', then a libtool library is created, only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created using 'ar' and 'ranlib', or on Windows using 'lib'. If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test : = "$opt_help"; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | $SED '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $debug_cmd # The first argument is the command name. cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "'$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir=$func_dirname_result ;; *) func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file=$progdir/$program fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if $opt_dry_run; then # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd=\$cmd$args fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "'$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument '$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=: if $isdir; then destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." destdir=$func_dirname_result destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking '$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname=$1 shift srcname=$realname test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme= ;; esac ;; os2*) case $realname in *_dll.a) tstripme= ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name=$func_basename_result instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest=$destfile destfile= ;; *) func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=.exe fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script '$wrapper'" finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file=$func_basename_result outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file=$outputname else func_warning "cannot relink '$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name=$func_basename_result # Set up the ranlib parameters. oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; then func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $debug_cmd win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s|.*|import| p q } }'` ;; esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $debug_cmd sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $debug_cmd match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive that possess that section. Heuristic: eliminate # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $debug_cmd if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result= fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $debug_cmd my_gentop=$1; shift my_oldlibs=${1+"$@"} my_oldobjs= my_xlib= my_xabs= my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches; do func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" cd "unfat-$$/$darwin_base_archive-$darwin_arch" func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result=$my_oldobjs } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* declarations of non-ANSI functions */ #if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ #if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC #elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined other platforms ... */ #endif #if defined PATH_MAX # define LT_PATHMAX PATH_MAX #elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free (stale); stale = 0; } \ } while (0) #if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; size_t tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined HAVE_DOS_BASED_FILE_SYSTEM if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined HAVE_DOS_BASED_FILE_SYSTEM } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = (size_t) (q - p); p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (STREQ (str, pat)) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else size_t len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { size_t orig_value_len = strlen (orig_value); size_t add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_suncc_cstd_abi # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! # Several compiler flags select an ABI that is incompatible with the # Cstd library. Avoid specifying it if any are in CXXFLAGS. func_suncc_cstd_abi () { $debug_cmd case " $compile_command " in *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) suncc_use_cstd_abi=no ;; *) suncc_use_cstd_abi=yes ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg=$1 shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir=$arg prev= continue ;; dlfiles|dlprefiles) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols=$arg test -f "$arg" \ || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex=$arg prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir=$arg prev= continue ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object fi # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; os2dllname) os2dllname=$arg prev= continue ;; precious_regex) precious_files_regex=$arg prev= continue ;; release) release=-$arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds=$arg prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between '-L' and '$1'" else func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of '$dir'" dir=$absdir ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test X-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module=$wl-multi_module continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "'-no-install' is ignored for $host" func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -os2dllname) prev=os2dllname continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization # -specs=* GCC specs files # -stdlib=* select c++ std lib with clang # -fsanitize=* Clang/GCC memory and address sanitizer -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ -specs=*|-fsanitize=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; -Z*) if test os2 = "`expr $host : '.*\(os2\)'`"; then # OS/2 uses -Zxxx to specify OS/2-specific options compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case $arg in -Zlinker | -Zstack) prev=xcompiler ;; esac continue else # Otherwise treat like 'Some other compiler flag' below func_quote_for_eval "$arg" arg=$func_quote_for_eval_result fi ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result test none = "$pic_object" || { # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object } # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the '$prevarg' option requires an argument" if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname=$func_basename_result libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" # Definition is injected by LT_CONFIG during libtool generation. func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" func_dirname "$output" "/" "" output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs=$tmp_deplibs fi if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass"; then libs=$deplibs deplibs= fi if test prog = "$linkmode"; then case $pass in dlopen) libs=$dlfiles ;; dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs=$dlprefiles fi if test dlopen = "$pass"; then # Collect dlpreopened libraries save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test lib != "$linkmode" && test prog != "$linkmode"; then func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib=$searchdir/lib$name$search_ext if test -f "$lib"; then if test .la = "$search_ext"; then found=: else found=false fi break 2 fi done done if $found; then # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll=$l done if test "X$ll" = "X$old_library"; then # only static version available found=false func_dirname "$lib" "" "." ladir=$func_dirname_result lib=$ladir/$old_library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi else # deplib doesn't seem to be a libtool library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi ;; # -l *.ltframework) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=: fi ;; pass_all) valid_a_lib=: ;; esac if $valid_a_lib; then echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." fi ;; esac continue ;; prog) if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test conv = "$pass"; then deplibs="$deplib $deplibs" elif test prog = "$linkmode"; then if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=: continue ;; esac # case $deplib $found || test -f "$lib" \ || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir=$func_dirname_result dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass" || { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done elif test prog != "$linkmode" && test lib != "$linkmode"; then func_fatal_error "'$lib' is not a convenience library" fi continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test yes = "$prefer_static_libs" || test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib=$l done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. if test dlopen = "$pass"; then test -z "$libdir" \ && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || test yes != "$dlopen_support" || test no = "$build_libtool_libs" then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir=$ladir fi ;; esac func_basename "$lib" laname=$func_basename_result # Find the relevant object directory and library name. if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library '$lib' was moved." dir=$ladir absdir=$abs_ladir libdir=$abs_ladir else dir=$lt_sysroot$libdir absdir=$lt_sysroot$libdir fi test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir=$ladir absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else dir=$ladir/$objdir absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test dlpreopen = "$pass"; then if test -z "$libdir" && test prog = "$linkmode"; then func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=false if test no != "$link_all_deplibs" || test -z "$library_names" || test no = "$build_libtool_libs"; then linkalldeplibs=: fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && { { test no = "$prefer_static_libs" || test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if $alldeplibs && { test pass_all = "$deplibs_check_method" || { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule=$dlpremoduletest break fi done if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test lib = "$linkmode" && test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result versuffix=-$major ;; esac eval soname=\"$soname_spec\" else soname=$realname fi # Make a new name for the extract_expsyms_cmds to use soroot=$soname func_basename "$soroot" soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test no = "$hardcode_direct"; then add=$dir/$linklib case $host in *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add=$dir/$old_library fi elif test -n "$old_library"; then add=$dir/$old_library fi fi esac elif test no = "$hardcode_minus_L"; then case $host in *-*-sunos*) add_shlibpath=$dir ;; esac add_dir=-L$dir add=-l$name elif test no = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; relink) if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$dir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name elif test yes = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; *) lib_linked=no ;; esac if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test yes != "$hardcode_direct" && test yes != "$hardcode_minus_L" && test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$libdir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$libdir add=-l$name elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add=-l$name elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib"; then add=$inst_prefix_dir$libdir/$linklib else add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name fi if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test unsupported != "$hardcode_direct"; then test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test yes = "$build_libtool_libs"; then # Not a shared library if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test lib = "$linkmode"; then if test -n "$dependency_libs" && { test yes != "$hardcode_into_libs" || test yes = "$build_old_libs" || test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of '$dir'" absdir=$dir fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names"; then for tmp in $deplibrary_names; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl"; then depdepl=$absdir/$objdir/$depdepl darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) path=-L$absdir/$objdir ;; esac else eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "'$deplib' seems to be moved" path=-L$absdir fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test link = "$pass"; then if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs=$newdependency_libs if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test dlopen != "$pass"; then test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= } if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" else vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Add Sun CC postdeps if required: test CXX = "$tagname" && { case $host_os in linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; solaris*) func_cc_basename "$CC" case $func_cc_basename_result in CC* | sunCC*) func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; esac } # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i= ;; esac if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test prog = "$linkmode"; then dlfiles=$newdlfiles fi if test prog = "$linkmode" || test lib = "$linkmode"; then dlprefiles=$newdlprefiles fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs=$output func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test no = "$module" \ && func_fatal_help "libtool library '$output' must begin with 'lib'" if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test pass_all != "$deplibs_check_method"; then func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test no = "$dlself" \ || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test 1 -lt "$#" \ && func_warning "ignoring multiple '-rpath's for a libtool library" install_libdir=$1 oldlibs= if test -z "$rpath"; then if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift IFS=$save_ifs test -n "$7" && \ func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major=$1 number_minor=$2 number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_revision ;; freebsd-aout|qnx|sunos) current=$number_major revision=$number_minor age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_minor lt_irix_increment=no ;; *) func_fatal_configuration "$modename: unknown library version type '$version_type'" ;; esac ;; no) current=$1 revision=$2 age=$3 ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT '$current' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION '$revision' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE '$age' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE '$age' is greater than the current interface number '$current'" func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" # On Darwin other compilers case $CC in nagfor*) verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" ;; *) verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; esac ;; freebsd-aout) major=.$current versuffix=.$current.$revision ;; freebsd-elf) func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; irix | nonstopux) if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring_prefix$major.$iface:$verstring done # Before this point, $major must not contain '.'. major=.$major versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=.$current.$age.$revision verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring:$iface.0 done # Make executables depend on our current version. func_append verstring ":$current.0" ;; qnx) major=.$current versuffix=.$current ;; sco) major=.$current versuffix=.$current ;; sunos) major=.$current versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result versuffix=-$major ;; *) func_fatal_configuration "unknown library version type '$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring=0.0 ;; esac if test no = "$need_version"; then versuffix= else versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided if test yes,no = "$avoid_version,$need_version"; then major= versuffix= verstring= fi # Check to see if the archive will have undefined symbols. if test yes = "$allow_undefined"; then if test unsupported = "$allow_undefined_flag"; then if test yes = "$build_old_libs"; then func_warning "undefined symbols not allowed in $host shared libraries; building static only" build_libtool_libs=no else func_fatal_error "can't build $host shared library unless -no-undefined is specified" fi fi else # Don't allow undefined symbols. allow_undefined_flag=$no_undefined_flag fi fi func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" test " " = "$libobjs" && libobjs= if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release= versuffix= major= newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib= ;; esac fi if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test yes = "$allow_libtool_libs_with_static_runtimes"; then for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test yes = "$droppeddeps"; then if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test yes = "$build_libtool_libs"; then # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath=$finalize_rpath test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath=$finalize_shlibpath test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname=$realname fi if test -z "$dlname"; then dlname=$soname fi lib=$output_objdir/$realname linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS=$save_ifs if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi ${skipped_export-false} && { func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi } libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs=$IFS; IFS='~' for cmd in $cmds; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs # Restore the uninstalled library and exit if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. dlname=$soname fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ func_warning "'-version-info' is ignored for objects" test -n "$release" && \ func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj=$output ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # if reload_cmds runs $LD directly, get rid of -Wl from # whole_archive_flag_spec and hope we can get by with turning comma # into space. case $reload_cmds in *\$LD[\ \$]*) wl= ;; esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS } if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "'-version-info' is ignored for programs" test -n "$release" && \ func_warning "'-release' is ignored for programs" $preload \ && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " $wl-bind_at_load" func_append finalize_command " $wl-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath=$rpath rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath=$rpath if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=false ;; *cygwin* | *mingw* ) test yes = "$build_libtool_libs" || wrappers_required=false ;; *) if test no = "$need_relink" || test yes != "$build_libtool_libs"; then wrappers_required=false fi ;; esac $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.$objext"; then func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test yes = "$no_install"; then # We don't need to create a wrapper script. link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi case $hardcode_action,$fast_install in relink,*) # Fast installation is not supported link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath func_warning "this platform does not like uninstalled shared libraries" func_warning "'$output' will be relinked during installation" ;; *,yes) link_command=$finalize_var$compile_command$finalize_rpath relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` ;; *,no) link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath ;; *,needless) link_command=$finalize_var$compile_command$finalize_rpath relink_command= ;; esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource=$output_path/$objdir/lt-$output_name.c cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do case $build_libtool_libs in convenience) oldobjs="$libobjs_save $symfileobj" addlibs=$convenience build_libtool_libs=no ;; module) oldobjs=$libobjs_save addlibs=$old_convenience build_libtool_libs=no ;; *) oldobjs="$old_deplibs $non_pic_objects" $preload && test -f "$symfileobj" \ && func_append oldobjs " $symfileobj" addlibs=$old_convenience ;; esac if test -n "$addlibs"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test yes = "$installed"; then if test -z "$install_libdir"; then break fi output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name=$func_basename_result func_resolve_sysroot "$deplib" eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } if test link = "$opt_mode" || test relink = "$opt_mode"; then func_mode_link ${1+"$@"} fi # func_mode_uninstall arg... func_mode_uninstall () { $debug_cmd RM=$nonopt files= rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic for arg do case $arg in -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir=$func_dirname_result if test . = "$dir"; then odir=$objdir else odir=$dir/$objdir fi func_basename "$file" name=$func_basename_result test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif $rmforce; then continue fi rmfiles=$file case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.$objext" if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name"; then func_append rmfiles " $odir/lt-$noexename.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then func_mode_uninstall ${1+"$@"} fi test -z "$opt_mode" && { help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: lyricue-4.0.12/build-aux/config.guess0000777000000000000000000000000013053456657023061 2/usr/share/automake-1.15/config.guessustar lyricue-4.0.12/build-aux/install-sh0000777000000000000000000000000013053456657022231 2/usr/share/automake-1.15/install-shustar lyricue-4.0.12/build-aux/missing0000777000000000000000000000000013053456657021217 2/usr/share/automake-1.15/missingustar