You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.0 KiB

  1. From 78fac26891fe7494355021dbac109b807b8c6d53 Mon Sep 17 00:00:00 2001
  2. From: Joachim Nilsson <troglobit@gmail.com>
  3. Date: Mon, 14 May 2018 15:40:43 +0200
  4. Subject: [PATCH] Convert AM_INIT_AUTOMAKE() --> AC_INIT() and trigger non-GNU
  5. project
  6. Converts from old-style configure syntax with AM_INIT_AUTOMAKE to
  7. AC_INIT and enable "foreign" mode, i.e. non-GNU conformant tree
  8. to avoid copying in COPYING and other files when autogen.sh runs.
  9. Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
  10. ---
  11. configure.in | 4 ++--
  12. 1 file changed, 2 insertions(+), 2 deletions(-)
  13. diff --git a/configure.in b/configure.in
  14. index 2f72645..c5fbc4b 100755
  15. --- a/configure.in
  16. +++ b/configure.in
  17. @@ -4,8 +4,8 @@ dnl This file is an input file used by the GNU "autoconf" program to
  18. dnl generate the file "configure", which is run during the build
  19. dnl to configure the system for the local environment.
  20. -AC_INIT
  21. -AM_INIT_AUTOMAKE(fcgi, 2.4.1-SNAP-0910052249)
  22. +AC_INIT(fcgi, 2.4.1-SNAP-0910052249)
  23. +AM_INIT_AUTOMAKE([1.11 foreign])
  24. AM_CONFIG_HEADER(fcgi_config.h)
  25. --
  26. 2.20.0