diff options
author | joerg <joerg@FreeBSD.org> | 2004-12-06 18:40:46 +0800 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 2004-12-06 18:40:46 +0800 |
commit | 043d559f8e43150fa14d78f0dd417697b59914be (patch) | |
tree | ddbd0a153b2467a9225c2d4ffc2b50140382ec06 /net/gq | |
parent | 8110c4f9803e3bc2d279b6e789172e9e09e1d824 (diff) | |
download | freebsd-ports-graphics-043d559f8e43150fa14d78f0dd417697b59914be.tar.gz freebsd-ports-graphics-043d559f8e43150fa14d78f0dd417697b59914be.tar.zst freebsd-ports-graphics-043d559f8e43150fa14d78f0dd417697b59914be.zip |
GQ changed the configure option to specify the LDAP base directory
from --with-ldap to --with-ldap-prefix quite some time ago.
Incidentally, it still used to work with the wrong option most of the
time, as configure silently ignores unknown --with options (this is a
feature), and as the configure script often included the correct -I
and -L options to find OpenLDAP as a side-effect of other stuff
installed in the same location. However, I've seen it fail as well,
and using the correct option is the canonical way out.
Approved by: maintainer timeout
Diffstat (limited to 'net/gq')
-rw-r--r-- | net/gq/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/gq/Makefile b/net/gq/Makefile index 3b521cf9aff..231768f655d 100644 --- a/net/gq/Makefile +++ b/net/gq/Makefile @@ -24,7 +24,7 @@ USE_OPENSSL= yes USE_X_PREFIX= yes USE_GNOME= gtk20 libxml2 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-ldap=${LOCALBASE} +CONFIGURE_ARGS= --with-ldap-prefix=${LOCALBASE} OPTIONS= JPEG "Enable jpegPhoto attr. handling" On \ DND "Enable Drag and drop support in browse mode" On \ |