1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00
emacs/build-aux/makecounter.sh
Po Lu db48c88e7e Update Android port
* build-aux/makecounter.sh (curcount): Rename `counter' to
`emacs_shortlisp_counter'.
* doc/emacs/input.texi (Touchscreens): Document
`touch-screen-extend-selection'.
* doc/lispref/commands.texi (Touchscreen Events): Document
`touchscreen-restart-drag'.
* lisp/touch-screen.el (touch-screen-extend-selection): New user
option.
(touch-screen-restart-drag): New function.
(touch-screen-handle-point-update): Handle `restart-drag'
gestures.
(touch-screen-handle-touch): Check if the prerequisites for
extending a previous drag gesture are met, and generate such
events if so.
(touch-screen-translate-touch): Update doc string.
* src/Makefile.in (otherobj): Remove BUILD_COUNTER_OBJ.
($(lispsource)/international/charprop.el):
(%.elc): Don't depend on bootstrap-emacs if cross configuring
for Android.
(libemacs.so): Directly depend on and link with
BUILD_COUNTER_OBJ.
2023-07-19 12:46:02 +08:00

44 lines
1.2 KiB
Bash
Executable File

#!/bin/sh
# Generate or update a C file containing an increasing counter
# variable.
#
# Copyright (C) 2023 Free Software Foundation, Inc.
#
# This file is part of GNU Emacs. GNU Emacs is free software: you can
# redistribute it and/or modify it under the terms of the GNU General
# Public License as published by the Free Software Foundation, either
# version 3 of the License, or (at your option) any later version.
#
# GNU Emacs is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
set -e
curcount=
if test -f "$1"; then
curcount=`cat "$1" | grep = | cut -d= -f2 \
| sed -e 's/;//' -e 's/ //'`
fi
curcount=`expr 1 + $curcount 2>/dev/null || echo 0`
cat > $1 <<EOF
/* Generated automatically by makecounter.sh. Do not edit! */
#include <config.h>
#ifdef HAVE_ANDROID
#define EXPORT __attribute__ ((visibility ("default")))
#endif /* HAVE_ANDROID */
#ifdef EXPORT
EXPORT
#endif /* EXPORT */
int emacs_shortlisp_counter = $curcount;
EOF