File: config.w32

package info (click to toggle)
php-stomp 2.0.2%2B1.0.9-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 568 kB
  • sloc: ansic: 3,350; xml: 820; php: 119; makefile: 1
file content (13 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
// $Id$
// vim:ft=javascript

ARG_ENABLE("stomp", "enable stomp support", "no");

if (PHP_STOMP != "no") {
	if (CHECK_LIB("ssleay32.lib", "stomp", PHP_STOMP) && CHECK_LIB("libeay32.lib", "stomp", PHP_STOMP)) {
		ADD_FLAG("CFLAGS_STOMP", "/DHAVE_STOMP_SSL=1");
	}

	EXTENSION("stomp", "stomp.c php_stomp.c");
}