diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-07-04 03:28:44 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-07-04 03:28:44 +0000 |
commit | d0997e4186bc295fc11a2cdb6ff3c148599db089 (patch) | |
tree | 8f8ce93d2f5a75430a59196b2d9e429a519b4345 /editors | |
parent | be5010743285a938b2977a9846adce0ff3b5f501 (diff) | |
download | FreeBSD-ports-d0997e4186bc295fc11a2cdb6ff3c148599db089.zip FreeBSD-ports-d0997e4186bc295fc11a2cdb6ff3c148599db089.tar.gz |
Bring over the NO_X11 changes from emacs20. (define NO_X11 to build without
an X dependancy)
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs/Makefile | 8 | ||||
-rw-r--r-- | editors/emacs19/Makefile | 8 | ||||
-rw-r--r-- | editors/emacs22/Makefile | 8 | ||||
-rw-r--r-- | editors/emacs23/Makefile | 8 |
4 files changed, 24 insertions, 8 deletions
diff --git a/editors/emacs/Makefile b/editors/emacs/Makefile index 5e3ef7f..75a22fa 100644 --- a/editors/emacs/Makefile +++ b/editors/emacs/Makefile @@ -3,7 +3,7 @@ # Date created: 29 October 1994 # Whom: jkh # -# $Id: Makefile,v 1.38 1999/03/11 21:47:10 scrappy Exp $ +# $Id: Makefile,v 1.39 1999/06/05 22:29:14 mharo Exp $ # DISTNAME= emacs-19.34b @@ -21,9 +21,13 @@ PLIST_SUB= EMACS_VERSION=${EMACS_VERSION} EMACS_ARCH=${CONFIGURE_TARGET} NO_LATEST_LINK= yes WRKSRC= ${WRKDIR}/emacs-19.34 GNU_CONFIGURE= yes -USE_XLIB= yes USE_GMAKE= yes +.if !defined(NO_X11) CONFIGURE_ARGS= --with-x-toolkit --sharedstatedir=/var/run +USE_XLIB= yes +.else +CONFIGURE_ARGS= --with-x=no --sharedstatedir=/var/run +.endif STRIP= MAN1= emacs.1 etags.1 ctags.1 diff --git a/editors/emacs19/Makefile b/editors/emacs19/Makefile index 5e3ef7f..75a22fa 100644 --- a/editors/emacs19/Makefile +++ b/editors/emacs19/Makefile @@ -3,7 +3,7 @@ # Date created: 29 October 1994 # Whom: jkh # -# $Id: Makefile,v 1.38 1999/03/11 21:47:10 scrappy Exp $ +# $Id: Makefile,v 1.39 1999/06/05 22:29:14 mharo Exp $ # DISTNAME= emacs-19.34b @@ -21,9 +21,13 @@ PLIST_SUB= EMACS_VERSION=${EMACS_VERSION} EMACS_ARCH=${CONFIGURE_TARGET} NO_LATEST_LINK= yes WRKSRC= ${WRKDIR}/emacs-19.34 GNU_CONFIGURE= yes -USE_XLIB= yes USE_GMAKE= yes +.if !defined(NO_X11) CONFIGURE_ARGS= --with-x-toolkit --sharedstatedir=/var/run +USE_XLIB= yes +.else +CONFIGURE_ARGS= --with-x=no --sharedstatedir=/var/run +.endif STRIP= MAN1= emacs.1 etags.1 ctags.1 diff --git a/editors/emacs22/Makefile b/editors/emacs22/Makefile index 5e3ef7f..75a22fa 100644 --- a/editors/emacs22/Makefile +++ b/editors/emacs22/Makefile @@ -3,7 +3,7 @@ # Date created: 29 October 1994 # Whom: jkh # -# $Id: Makefile,v 1.38 1999/03/11 21:47:10 scrappy Exp $ +# $Id: Makefile,v 1.39 1999/06/05 22:29:14 mharo Exp $ # DISTNAME= emacs-19.34b @@ -21,9 +21,13 @@ PLIST_SUB= EMACS_VERSION=${EMACS_VERSION} EMACS_ARCH=${CONFIGURE_TARGET} NO_LATEST_LINK= yes WRKSRC= ${WRKDIR}/emacs-19.34 GNU_CONFIGURE= yes -USE_XLIB= yes USE_GMAKE= yes +.if !defined(NO_X11) CONFIGURE_ARGS= --with-x-toolkit --sharedstatedir=/var/run +USE_XLIB= yes +.else +CONFIGURE_ARGS= --with-x=no --sharedstatedir=/var/run +.endif STRIP= MAN1= emacs.1 etags.1 ctags.1 diff --git a/editors/emacs23/Makefile b/editors/emacs23/Makefile index 5e3ef7f..75a22fa 100644 --- a/editors/emacs23/Makefile +++ b/editors/emacs23/Makefile @@ -3,7 +3,7 @@ # Date created: 29 October 1994 # Whom: jkh # -# $Id: Makefile,v 1.38 1999/03/11 21:47:10 scrappy Exp $ +# $Id: Makefile,v 1.39 1999/06/05 22:29:14 mharo Exp $ # DISTNAME= emacs-19.34b @@ -21,9 +21,13 @@ PLIST_SUB= EMACS_VERSION=${EMACS_VERSION} EMACS_ARCH=${CONFIGURE_TARGET} NO_LATEST_LINK= yes WRKSRC= ${WRKDIR}/emacs-19.34 GNU_CONFIGURE= yes -USE_XLIB= yes USE_GMAKE= yes +.if !defined(NO_X11) CONFIGURE_ARGS= --with-x-toolkit --sharedstatedir=/var/run +USE_XLIB= yes +.else +CONFIGURE_ARGS= --with-x=no --sharedstatedir=/var/run +.endif STRIP= MAN1= emacs.1 etags.1 ctags.1 |