mirror of
https://repo.or.cz/socat.git
synced 2024-12-22 23:42:34 +00:00
autoconf now prefers configure.ac over configure.in
This commit is contained in:
parent
2893ae4d03
commit
4a0e282c97
3 changed files with 7 additions and 2 deletions
3
CHANGES
3
CHANGES
|
@ -171,6 +171,9 @@ porting:
|
|||
Check for linux/errqueue.h failed on some systems due to lack of
|
||||
linux/types.h inclusion. Thanks to Michael Vastola for sending a patch.
|
||||
|
||||
autoconf now prefers configure.ac over configure.in
|
||||
Thanks to Michael Vastola for sending a patch.
|
||||
|
||||
libwrap always logs to syslog
|
||||
|
||||
added actual text version of GPLv2
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# source: Makefile.in
|
||||
# Copyright Gerhard Rieger 2001-2012
|
||||
# Copyright Gerhard Rieger
|
||||
# Published under the GNU General Public License V.2, see file COPYING
|
||||
|
||||
# note: @...@ forms are filled in by configure script
|
||||
|
@ -162,7 +162,8 @@ socat.tar.bz2: socat.tar
|
|||
|
||||
VERSION = `sed 's/"//g' VERSION`
|
||||
TARDIR = socat-$(VERSION)
|
||||
socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES)
|
||||
socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) \
|
||||
confiugre.ac
|
||||
if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi
|
||||
tar cf - $+ |(cd $(TARDIR); tar xf -)
|
||||
tar cvf socat.tar $(TARDIR)
|
||||
|
|
1
configure.ac
Symbolic link
1
configure.ac
Symbolic link
|
@ -0,0 +1 @@
|
|||
configure.ac
|
Loading…
Reference in a new issue