Correct XInput tablet build logic.

Tue, 22 Sep 2009 11:08:04 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 22 Sep 2009 11:08:04 +0200
changeset 213
117704011216
parent 212
862d0abd0aa8
child 214
4d116d09a000

Correct XInput tablet build logic.

bacula/bacula.patch file | annotate | diff | comparison | revisions
qt/qt.spec file | annotate | diff | comparison | revisions
     1.1 --- a/bacula/bacula.patch	Tue Aug 04 19:18:40 2009 +0200
     1.2 +++ b/bacula/bacula.patch	Tue Sep 22 11:08:04 2009 +0200
     1.3 @@ -65,14 +65,14 @@
     1.4  -      [ -x ${SCRIPTDIR}/bacula-ctl-fd ] && ${SCRIPTDIR}/bacula-ctl-fd $1 $2
     1.5  -      [ -x ${SCRIPTDIR}/bacula-ctl-sd ] && ${SCRIPTDIR}/bacula-ctl-sd $1 $2
     1.6  -      [ -x ${SCRIPTDIR}/bacula-ctl-dir ] && ${SCRIPTDIR}/bacula-ctl-dir $1 $2
     1.7 ++      [ "$enable_fd" = "yes"  ] && [ -x ${SCRIPTDIR}/bacula-ctl-fd ] && ${SCRIPTDIR}/bacula-ctl-fd $1 $2
     1.8  +      [ "$enable_sd" = "yes"  ] && [ -x ${SCRIPTDIR}/bacula-ctl-sd ] && ${SCRIPTDIR}/bacula-ctl-sd $1 $2
     1.9 -+      [ "$enable_fd" = "yes"  ] && [ -x ${SCRIPTDIR}/bacula-ctl-fd ] && ${SCRIPTDIR}/bacula-ctl-fd $1 $2
    1.10  +      [ "$enable_dir" = "yes" ] && [ -x ${SCRIPTDIR}/bacula-ctl-dir ] && ${SCRIPTDIR}/bacula-ctl-dir $1 $2
    1.11         ;;
    1.12   
    1.13      restart)
    1.14  -      $0 stop
    1.15 -+      $0 stop  $debug $enable_dir $enable_sd $enable_fd
    1.16 ++      $0 stop $debug $enable_dir $enable_sd $enable_fd
    1.17         sleep 2
    1.18  -      $0 start
    1.19  +      $0 start $debug $enable_dir $enable_sd $enable_fd
     2.1 --- a/qt/qt.spec	Tue Aug 04 19:18:40 2009 +0200
     2.2 +++ b/qt/qt.spec	Tue Sep 22 11:08:04 2009 +0200
     2.3 @@ -35,7 +35,7 @@
     2.4  
     2.5  #   package information
     2.6  Name:         qt
     2.7 -Summary:      Cross-platform Application Framework
     2.8 +Summary:      Cross Platform Application Framework
     2.9  URL:          http://www.trolltech.com/products/qt/
    2.10  Vendor:       Nokia Corporation
    2.11  Packager:     Michael Schloh von Bennewitz
    2.12 @@ -142,6 +142,8 @@
    2.13      %{l_shtool} subst \
    2.14          -e "s;^\(LIBS += \)-lfreetype -lfontconfig;\1$fontconflibs;" \
    2.15          config.tests/x11/fontconfig/fontconfig.pro
    2.16 +    echo 'INCLUDEPATH += /usr/include/wacomcfg' \
    2.17 +        >>src/gui/kernel/x11.pri
    2.18      %{l_shtool} subst \
    2.19          -e "s;\(LIBS += -lpq\);\1 `%{l_prefix}/bin/pg_config --libs` $loclibs;" \
    2.20          config.tests/unix/psql/psql.pro

mercurial