diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2001-11-29 18:10:59 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2001-11-29 18:10:59 +0000 |
commit | 5cabf05e6660fd7e1c7a870aebe8364c7eb44561 (patch) | |
tree | 788455b58b40df6905031fd357310773115f34ff | |
parent | Fix ownership and permissions on shlibs to make ldconfig happy. (diff) |
Specify DEF_SERVER explicitly in case the user is buildling with just the X
libraries installed.
PR: 32355
Submitted by: Norikatsu Shigemura <nork@ninth-nine.com>
-rw-r--r-- | x11/wdm/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/x11/wdm/Makefile b/x11/wdm/Makefile index b0e73064077c..1f00fb007e23 100644 --- a/x11/wdm/Makefile +++ b/x11/wdm/Makefile @@ -22,9 +22,11 @@ DIST_SUBDIR= wdm USE_X_PREFIX= yes USE_AUTOMAKE= yes AUTOMAKE_ARGS= --include-deps +DEF_SERVER?= ${X11BASE}/bin/X CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \ -DCSRG_BASED -DHAS_SETUSERCONTEXT" \ - LIBS="-L${LOCALBASE}/lib ${LIBPAM}" + LIBS="-L${LOCALBASE}/lib ${LIBPAM}" \ + DEF_SERVER="${DEF_SERVER}" CONFIGURE_ARGS= --with-logdir=/var/log \ --with-runlockdir=/var/run \ --with-wdmdir=${PREFIX}/lib/X11/wdm \ |