File: C.pm.stub

package info (click to toggle)
findimagedupes 2.20.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 828 kB
  • sloc: perl: 1,066; makefile: 46; sh: 32
file content (18 lines) | stat: -rw-r--r-- 328 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/perl
package findimagedupes::C;

use Inline
	C => 'DATA',
	NAME => 'findimagedupes::C',
	VERSION => '0.01',
	CCFLAGSEX => "`dpkg-buildflags --get CPPFLAGS`"
	             . ' '
	             . "`dpkg-buildflags --get CFLAGS`",
	LDDLFLAGS => '-shared -Wl,-z,relro -Wl,-z,now',
;

our $VERSION = '0.01';
1;

__DATA__