File: config.w32

package info (click to toggle)
php-sasl 0.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 152 kB
  • ctags: 82
  • sloc: ansic: 518; xml: 42; makefile: 10
file content (16 lines) | stat: -rw-r--r-- 462 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// $Id: config.w32,v 1.1 2004/01/22 08:47:24 jon Exp $
// vim:ft=javascript

ARG_WITH("sasl", "Cyrus SASL support", "no");

if (PHP_SASL != "no") {
	if (CHECK_HEADER_ADD_INCLUDE("sasl.h", "CFLAGS_SASL",
								 PHP_SASL + "\\include") &&
		CHECK_LIB("libsasl.lib", "sasl", PHP_SASL + "\\lib")) {
		EXTENSION("sasl", "sasl.c", null, "/D SASL_EXPORTS");
		AC_DEFINE("HAVE_SASL", 1);
	} else {
		WARNING("sasl not enabled; libraries and headers not found");
	}
}