BSD has re_comp/re_exec in -lcompat

This commit is contained in:
Kurt Zeilenga 1998-08-20 19:44:02 +00:00
parent cbc4b47f70
commit c636a39a60
2 changed files with 2 additions and 1 deletions

View File

@ -44,3 +44,4 @@ LDAP_CRYPT_LIB= -lcrypt
# -------------------------------------------------------------------------
CC = gcc
PLATFORMCFLAGS= -Dfreebsd
PLATFORMLIBS=-lcompat

View File

@ -101,7 +101,7 @@
* some systems don't have the BSD re_comp and re_exec routines
*/
#ifndef NEED_BSDREGEX
#if defined( SYSV ) || defined( VMS ) || defined( netbsd ) || defined( freebsd ) || defined( linux )
#if defined( SYSV ) || defined( VMS ) || defined( netbsd ) || defined( linux )
#define NEED_BSDREGEX
#endif
#endif