mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
commit
ec4d5390dd
2
COPYING
2
COPYING
@ -31,7 +31,7 @@ include their complete licence notices in COPYING:
|
|||||||
* config/mkinstalldirs: Public domain.
|
* config/mkinstalldirs: Public domain.
|
||||||
|
|
||||||
* configure: "unlimited permission to copy, distribute and modify"
|
* configure: "unlimited permission to copy, distribute and modify"
|
||||||
from FSF, but this is also derived from configure.in, which is
|
from FSF, but this is also derived from configure.ac, which is
|
||||||
GPLv2.
|
GPLv2.
|
||||||
|
|
||||||
* contrib/debian/rules: "GNU copyright 1997 to 1999 by Joey Hess",
|
* contrib/debian/rules: "GNU copyright 1997 to 1999 by Joey Hess",
|
||||||
|
2
INSTALL
2
INSTALL
@ -24,7 +24,7 @@ ECMAScript (that's JavaScript) support.
|
|||||||
./autogen.sh! (It should be enough to do it once - however, if you have build
|
./autogen.sh! (It should be enough to do it once - however, if you have build
|
||||||
problems, try running this first.) Also, you obviously need GNU make and
|
problems, try running this first.) Also, you obviously need GNU make and
|
||||||
autoconf installed on your system (for the supported versions of autoconf,
|
autoconf installed on your system (for the supported versions of autoconf,
|
||||||
see AC_PREREQ in configure.in). Otherwise, you have to use the nightly GIT
|
see AC_PREREQ in configure.ac). Otherwise, you have to use the nightly GIT
|
||||||
snapshot - you don't need to do this there.
|
snapshot - you don't need to do this there.
|
||||||
|
|
||||||
|
|
||||||
|
6
Makefile
6
Makefile
@ -13,10 +13,10 @@ $(top_builddir)/config.status: $(top_srcdir)/configure
|
|||||||
cd $(top_builddir) && $(SHELL) ./config.status --recheck
|
cd $(top_builddir) && $(SHELL) ./config.status --recheck
|
||||||
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
$(ACLOCAL_M4): $(top_srcdir)/configure.in $(top_srcdir)/acinclude.m4
|
$(ACLOCAL_M4): $(top_srcdir)/configure.ac
|
||||||
cd $(top_srcdir) && $(ACLOCAL)
|
cd $(top_srcdir) && $(ACLOCAL)
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(top_srcdir)/configure: $(top_srcdir)/configure.ac $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOCONF)
|
cd $(top_srcdir) && $(AUTOCONF)
|
||||||
|
|
||||||
# Makefile.config doesn't need a separate timestamp file because
|
# Makefile.config doesn't need a separate timestamp file because
|
||||||
@ -45,7 +45,7 @@ $(top_srcdir)/config.h.in: $(top_srcdir)/stamp-h.in
|
|||||||
$(MAKE) $(top_srcdir)/stamp-h.in; \
|
$(MAKE) $(top_srcdir)/stamp-h.in; \
|
||||||
else :; fi
|
else :; fi
|
||||||
|
|
||||||
$(top_srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(top_srcdir)/stamp-h.in: $(top_srcdir)/configure.ac $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOHEADER)
|
cd $(top_srcdir) && $(AUTOHEADER)
|
||||||
@echo timestamp > $(top_srcdir)/stamp-h.in 2> /dev/null
|
@echo timestamp > $(top_srcdir)/stamp-h.in 2> /dev/null
|
||||||
|
|
||||||
|
@ -99,10 +99,10 @@ XMLTO = @XMLTO@
|
|||||||
X_CFLAGS = @X_CFLAGS@
|
X_CFLAGS = @X_CFLAGS@
|
||||||
XGETTEXT = @XGETTEXT@
|
XGETTEXT = @XGETTEXT@
|
||||||
|
|
||||||
#Warning: this one is not in configure.in so following line will not generate it
|
#Warning: this one is not in configure.ac so following line will not generate it
|
||||||
CONFIG_NLS = @CONFIG_NLS@
|
CONFIG_NLS = @CONFIG_NLS@
|
||||||
|
|
||||||
# :r !grep '(CONFIG_[A-Z0-9_]\+[^A-Z0-9_]' configure.in | sed 's/^.*(\(CONFIG_[A-Z0-9_]\+\)[^A-Z0-9_].*$/\1 = @\1@/' | sort | uniq
|
# :r !grep '(CONFIG_[A-Z0-9_]\+[^A-Z0-9_]' configure.ac | sed 's/^.*(\(CONFIG_[A-Z0-9_]\+\)[^A-Z0-9_].*$/\1 = @\1@/' | sort | uniq
|
||||||
|
|
||||||
CONFIG_256_COLORS = @CONFIG_256_COLORS@
|
CONFIG_256_COLORS = @CONFIG_256_COLORS@
|
||||||
CONFIG_88_COLORS = @CONFIG_88_COLORS@
|
CONFIG_88_COLORS = @CONFIG_88_COLORS@
|
||||||
|
@ -1,12 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
echo acinclude.m4...
|
|
||||||
(
|
|
||||||
echo "dnl Automatically generated from config/m4/ files by autogen.sh!"
|
|
||||||
echo "dnl Do not modify!"
|
|
||||||
cat config/m4/*.m4
|
|
||||||
) > acinclude.m4
|
|
||||||
|
|
||||||
echo aclocal...
|
echo aclocal...
|
||||||
aclocal
|
aclocal
|
||||||
|
|
||||||
|
@ -13,6 +13,7 @@ AC_PREREQ(2.61)
|
|||||||
AC_INIT
|
AC_INIT
|
||||||
AC_CONFIG_SRCDIR([src/main/main.c])
|
AC_CONFIG_SRCDIR([src/main/main.c])
|
||||||
AC_CONFIG_AUX_DIR(config)
|
AC_CONFIG_AUX_DIR(config)
|
||||||
|
AC_CONFIG_MACRO_DIR([config/m4])
|
||||||
|
|
||||||
PACKAGE=elinks
|
PACKAGE=elinks
|
||||||
VERSION=0.13.GIT
|
VERSION=0.13.GIT
|
||||||
@ -26,6 +27,8 @@ AC_CHECK_PROG(ACLOCAL,[aclocal],[aclocal],[config/missing aclocal])
|
|||||||
AC_CHECK_PROG(AUTOCONF,[autoconf],[autoconf],[config/missing autoconf])
|
AC_CHECK_PROG(AUTOCONF,[autoconf],[autoconf],[config/missing autoconf])
|
||||||
AC_CHECK_PROG(AUTOHEADER,[autoheader],[autoheader],[config/missing autoheader])
|
AC_CHECK_PROG(AUTOHEADER,[autoheader],[autoheader],[config/missing autoheader])
|
||||||
|
|
||||||
|
AC_USE_SYSTEM_EXTENSIONS
|
||||||
|
|
||||||
MAKE=
|
MAKE=
|
||||||
|
|
||||||
for make in gnumake gmake make false; do
|
for make in gnumake gmake make false; do
|
@ -209,7 +209,7 @@ elinks.conf.5.html: option-config.frag.xhtml
|
|||||||
perl-%.html: %.pl
|
perl-%.html: %.pl
|
||||||
$(call cmd,pod2html)
|
$(call cmd,pod2html)
|
||||||
|
|
||||||
Doxyfile: $(srcdir)Doxyfile.in $(top_srcdir)/configure.in
|
Doxyfile: $(srcdir)Doxyfile.in $(top_srcdir)/configure.ac
|
||||||
cd $(top_builddir) && \
|
cd $(top_builddir) && \
|
||||||
CONFIG_FILES="$(RELPATH)$@" CONFIG_HEADERS= $(SHELL) ./config.status
|
CONFIG_FILES="$(RELPATH)$@" CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
top_builddir=../../..
|
top_builddir=../../..
|
||||||
include $(top_builddir)/Makefile.config
|
include $(top_builddir)/Makefile.config
|
||||||
|
|
||||||
elinks.1: $(srcdir)elinks.1.in $(top_srcdir)/configure.in
|
elinks.1: $(srcdir)elinks.1.in $(top_srcdir)/configure.ac
|
||||||
cd $(top_builddir) && \
|
cd $(top_builddir) && \
|
||||||
CONFIG_FILES="$(RELPATH)$@" CONFIG_HEADERS= $(SHELL) ./config.status
|
CONFIG_FILES="$(RELPATH)$@" CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ When releasing a new version
|
|||||||
by new contributors are always important!
|
by new contributors are always important!
|
||||||
- Update NEWS file and commit. Remember to add the new version number!
|
- Update NEWS file and commit. Remember to add the new version number!
|
||||||
Don't add the release date yet though; you will add it in a later step.
|
Don't add the release date yet though; you will add it in a later step.
|
||||||
- Change VERSION in the top of configure.in to hold the new version number.
|
- Change VERSION in the top of configure.ac to hold the new version number.
|
||||||
- Update the manpages so the will have the new release number by first
|
- Update the manpages so the will have the new release number by first
|
||||||
building the source, followed by making the `update-man' target in doc/.
|
building the source, followed by making the `update-man' target in doc/.
|
||||||
- Update po files by running `make update-po` in po/`.
|
- Update po files by running `make update-po` in po/`.
|
||||||
@ -34,7 +34,7 @@ When releasing a new version
|
|||||||
$ gpg -b --armor elinks-X.X.X.tar.bz2
|
$ gpg -b --armor elinks-X.X.X.tar.bz2
|
||||||
$ gpg -b --armor elinks-X.X.X.tar.gz
|
$ gpg -b --armor elinks-X.X.X.tar.gz
|
||||||
|
|
||||||
- Append ".GIT" to the VERSION variable in the top of configure.in.
|
- Append ".GIT" to the VERSION variable in the top of configure.ac.
|
||||||
- Commit only this change.
|
- Commit only this change.
|
||||||
- Push these changes plus tag using:
|
- Push these changes plus tag using:
|
||||||
|
|
||||||
@ -104,7 +104,7 @@ When releasing a new stable branch
|
|||||||
- Locally clone the freezed repository to a new repository that will contain
|
- Locally clone the freezed repository to a new repository that will contain
|
||||||
the new stable branch.
|
the new stable branch.
|
||||||
- Unfreeze the repository that was cloned by changing the VERSION variable in
|
- Unfreeze the repository that was cloned by changing the VERSION variable in
|
||||||
configure.in to the version of the new unstable branch (remember the
|
configure.ac to the version of the new unstable branch (remember the
|
||||||
ending ".GIT"), commit, and push.
|
ending ".GIT"), commit, and push.
|
||||||
- Add new remote branch that will track the new stable "trunk". It should
|
- Add new remote branch that will track the new stable "trunk". It should
|
||||||
basically be the push URL of the cloned repository with "#elinks-X.X"
|
basically be the push URL of the cloned repository with "#elinks-X.X"
|
||||||
|
@ -38,10 +38,10 @@
|
|||||||
# easier for us as well as for the users. Do not forget to accurately describe
|
# easier for us as well as for the users. Do not forget to accurately describe
|
||||||
# the feature and also the impact of enabling/disabling it. Follow the format of
|
# the feature and also the impact of enabling/disabling it. Follow the format of
|
||||||
# existing comments. Follow the example of XBEL when adding features which also
|
# existing comments. Follow the example of XBEL when adding features which also
|
||||||
# need some detection in configure.in.
|
# need some detection in configure.ac.
|
||||||
#
|
#
|
||||||
# Not everything is suitable for an entry in this file, maybe it would be
|
# Not everything is suitable for an entry in this file, maybe it would be
|
||||||
# happier directly in the configure.in. If it is really purely question of
|
# happier directly in the configure.ac. If it is really purely question of
|
||||||
# system support (X2, HAVE_SA_STORAGE), and it makes no sense for the user to
|
# system support (X2, HAVE_SA_STORAGE), and it makes no sense for the user to
|
||||||
# touch it, do not include it here.
|
# touch it, do not include it here.
|
||||||
#
|
#
|
||||||
|
@ -48,7 +48,7 @@ First change directory to the root directory of the unpacked source tarball:
|
|||||||
|
|
||||||
$ cd ../
|
$ cd ../
|
||||||
|
|
||||||
Add your language code to the ALL_LINGUAS string in configure.in (keep the
|
Add your language code to the ALL_LINGUAS string in configure.ac (keep the
|
||||||
alphabetic order ;). To make the change take effect you have to rebuild all
|
alphabetic order ;). To make the change take effect you have to rebuild all
|
||||||
Makefiles:
|
Makefiles:
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
struct hash;
|
struct hash;
|
||||||
|
|
||||||
/* The TRE check in configure.in assumes unicode_val_T is uint32_t. */
|
/* The TRE check in configure.ac assumes unicode_val_T is uint32_t. */
|
||||||
typedef uint32_t unicode_val_T;
|
typedef uint32_t unicode_val_T;
|
||||||
|
|
||||||
/* U+0020 SPACE. Normally the same as ' ' or L' ' but perhaps ELinks
|
/* U+0020 SPACE. Normally the same as ' ' or L' ' but perhaps ELinks
|
||||||
|
Loading…
Reference in New Issue
Block a user