~mitya57/pkg-kde-tools/0.15.16ubuntu1

« back to all changes in this revision

Viewing changes to t/dlrestrictions/testdlr_plugin.c

  • Committer: Bazaar Package Importer
  • Author(s): Modestas Vainius
  • Date: 2011-05-24 12:28:48 UTC
  • mfrom: (0.1.34 sid)
  • Revision ID: james.westby@ubuntu.com-20110524122848-rypmzvzs1x7fwvnq
Tags: 0.13.1
* Fix sections libdlrestrictions1 and libdlrestrictions-dev (libs and
  libdevel respectively).
* Bump Standards-Version to 3.9.2: no changes needed.
* Relicense DLRestrictions under less troublesome LGPLv2.1.
* While installing, preserve source permissions of files in cmake, makefiles,
  qt-kde-team and some other directories. This solves unexecutable scripts
  problem.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdio.h>
 
2
#include "testdlr.h"
 
3
 
 
4
int testdlr_plugin_func() {
 
5
    printf("++ " PLUGIN_NAME ": START ++\n");
 
6
 
 
7
    testdlr_lib1_func();
 
8
 
 
9
    printf("++ " PLUGIN_NAME ": END ++\n");
 
10
    return 0;
 
11
}