diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2008-01-13 01:40:08 +0000 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2008-01-13 01:40:08 +0000 |
commit | 6c692c9f6762f0490307294e098b7ce1a8d46611 (patch) | |
tree | 15b67c844bdfd57a2823034925c1c6fd637a93a2 /configure.in | |
parent | 6c1ee4cb430e77b9e7a4d9d8a027b58186cb05e7 (diff) | |
download | librcd-6c692c9f6762f0490307294e098b7ce1a8d46611.tar.gz librcd-6c692c9f6762f0490307294e098b7ce1a8d46611.tar.bz2 librcd-6c692c9f6762f0490307294e098b7ce1a8d46611.tar.xz librcd-6c692c9f6762f0490307294e098b7ce1a8d46611.zip |
Portability fixes
- FreeBSD compability fixes of autoconfigure scripts by Ulrich Spoerlein
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 15d197f..0940012 100644 --- a/configure.in +++ b/configure.in @@ -22,7 +22,7 @@ AC_ARG_ENABLE( latin, [ --disable-latin disable detection of ISO-8859-1],, disable_latin="yes") -if test "x$disable_latin" == "xyes"; then +if test "x$disable_latin" = "xyes"; then AC_DEFINE(DETECT_LATIN,1,[Defines if ISO-8859-1 detection is enabled]) fi |