diff options
author | petef <petef@FreeBSD.org> | 2001-11-30 02:10:59 +0800 |
---|---|---|
committer | petef <petef@FreeBSD.org> | 2001-11-30 02:10:59 +0800 |
commit | b6ad6070c4ef074679d493859d648393bb778127 (patch) | |
tree | 15e1c5daae97c5ededf878621a5ff2bdf124f1c9 /x11 | |
parent | 49a19c5515e6aae440dc15995569d36ac76e9f2e (diff) | |
download | freebsd-ports-gnome-b6ad6070c4ef074679d493859d648393bb778127.tar.gz freebsd-ports-gnome-b6ad6070c4ef074679d493859d648393bb778127.tar.zst freebsd-ports-gnome-b6ad6070c4ef074679d493859d648393bb778127.zip |
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>
Diffstat (limited to 'x11')
-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 \ |