diff options
| author | Paul Eggert | 2022-07-05 23:25:44 -0500 |
|---|---|---|
| committer | Paul Eggert | 2022-07-05 23:27:17 -0500 |
| commit | 54e0b14a6981a317210493f0fead1e2c5b6508ea (patch) | |
| tree | 4d6f3c5b45a31ff56f76a6d4c9184024962968af /src | |
| parent | e482379a65e99cb61aba86876587b499eeeef007 (diff) | |
| download | emacs-54e0b14a6981a317210493f0fead1e2c5b6508ea.tar.gz emacs-54e0b14a6981a317210493f0fead1e2c5b6508ea.zip | |
Adjust better to Autoconf quoting style change
* admin/gitmerge.el (gitmerge-emacs-version):
* admin/nt/dist-build/build-zips.sh (ACTUAL_VERSION):
* admin/quick-install-emacs (VERSION):
* lisp/cedet/ede/emacs.el (ede-emacs-version):
Adjust to change in configure.ac’s Autoconf quoting style.
* etc/srecode/ede-autoconf.srt:
* test/lisp/progmodes/autoconf-tests.el:
(autoconf-tests-current-defun-function-define)
(autoconf-tests-current-defun-function-subst):
Use better Autoconf quoting.
* make-dist (version): Simplify.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/xterm.c b/src/xterm.c index 45aef51ecb3..996a441fda3 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -233,18 +233,19 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | |||
| 233 | EMACS_CHECK_MODULES([XFIXES], [$XFIXES_MODULES]) | 233 | EMACS_CHECK_MODULES([XFIXES], [$XFIXES_MODULES]) |
| 234 | if test $HAVE_XFIXES = no; then | 234 | if test $HAVE_XFIXES = no; then |
| 235 | # Test old way in case pkg-config doesn't have it (older machines). | 235 | # Test old way in case pkg-config doesn't have it (older machines). |
| 236 | AC_CHECK_HEADER(X11/extensions/Xfixes.h, | 236 | AC_CHECK_HEADER([X11/extensions/Xfixes.h], |
| 237 | [AC_CHECK_LIB(Xfixes, XFixesHideCursor, HAVE_XFIXES=yes)]) | 237 | [AC_CHECK_LIB([Xfixes], [XFixesHideCursor], [HAVE_XFIXES=yes])]) |
| 238 | if test $HAVE_XFIXES = yes; then | 238 | if test $HAVE_XFIXES = yes; then |
| 239 | XFIXES_LIBS=-lXfixes | 239 | XFIXES_LIBS=-lXfixes |
| 240 | fi | 240 | fi |
| 241 | fi | 241 | fi |
| 242 | if test $HAVE_XFIXES = yes; then | 242 | if test $HAVE_XFIXES = yes; then |
| 243 | AC_DEFINE(HAVE_XFIXES, 1, [Define to 1 if you have the Xfixes extension.]) | 243 | AC_DEFINE([HAVE_XFIXES], [1], |
| 244 | [Define to 1 if you have the Xfixes extension.]) | ||
| 244 | fi | 245 | fi |
| 245 | fi | 246 | fi |
| 246 | AC_SUBST(XFIXES_CFLAGS) | 247 | AC_SUBST([XFIXES_CFLAGS]) |
| 247 | AC_SUBST(XFIXES_LIBS) | 248 | AC_SUBST([XFIXES_LIBS]) |
| 248 | 249 | ||
| 249 | Then, make sure to adjust CFLAGS and LIBES in src/Makefile.in and | 250 | Then, make sure to adjust CFLAGS and LIBES in src/Makefile.in and |
| 250 | add the new XFIXES_CFLAGS and XFIXES_LIBS variables to | 251 | add the new XFIXES_CFLAGS and XFIXES_LIBS variables to |