Your message dated Mon, 22 Dec 2025 18:02:22 +0000 with message-id <[🔎] E1vXkEg-00GKT8-2W@fasolo.debian.org> and subject line Bug#1081135: Removed package(s) from unstable has caused the Debian Bug report #31803, regarding Autoconf AC_PATH_PROG macro problem... to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner@bugs.debian.org immediately.) -- 31803: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=31803 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: submit@bugs.debian.org
- Subject: Autoconf AC_PATH_PROG macro problem...
- From: Mike Simons <msimons@fsimons01.erols.com>
- Date: Tue, 12 Jan 1999 22:13:53 -0500 (EST)
- Message-id: <199901130313.WAA15313@fsimons01.erols.com>
Package: autoconf Installed-Size: 707 Version: 2.12-12 This configure.in script gets processed wrong: ======= AC_INIT AC_ARG_WITH(perl, [--with-perl=FILE Which perl executable to use], PERL_PATH="${with_perl}", AC_PATH_PROG(PERL_PATH, perl)) ======= What I think the problem is: AC_PATH_PROG(PERL_PATH, perl) contains a case expression, one close paren in that expression gets eaten by something... Comes out looking like this: > case "$PERL_PATH" in > /* >fi > > ac_cv_path_PERL_PATH="$PERL_PATH" # Let the user override the test with a path. > ;; Should look like this: > case "$PERL_PATH" in > /*) > ac_cv_path_PERL_PATH="$PERL_PATH" # Let the user override the test with a path. > ;; What I think the fix is: Modify acgeneral.m4 around line 1341 and 1344 so that these case statements have their ')' escaped from whatever is munching on them. 1340 [case "[$]$1" in 1341 /*) 1342 ac_cv_path_$1="[$]$1" # Let the user override the test with a path. 1343 ;; 1344 *) Thanks, Mike Simons msimons@fsimons01.erols.com
--- End Message ---
--- Begin Message ---
- To: 15626-done@bugs.debian.org,20768-done@bugs.debian.org,31803-done@bugs.debian.org,33990-done@bugs.debian.org,44405-done@bugs.debian.org,44862-done@bugs.debian.org,44870-done@bugs.debian.org,44894-done@bugs.debian.org,46244-done@bugs.debian.org,47585-done@bugs.debian.org,48123-done@bugs.debian.org,58039-done@bugs.debian.org,62180-done@bugs.debian.org,179201-done@bugs.debian.org,1081532-done@bugs.debian.org,977321-done@bugs.debian.org,
- Cc: autoconf2.13@packages.debian.org
- Subject: Bug#1081135: Removed package(s) from unstable
- From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>
- Date: Mon, 22 Dec 2025 18:02:22 +0000
- Message-id: <[🔎] E1vXkEg-00GKT8-2W@fasolo.debian.org>
Version: 2.13-69+rm Dear submitter, as the package autoconf2.13 has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see https://bugs.debian.org/1081135 The version of this package that was in Debian prior to this removal can still be found using https://snapshot.debian.org/. Please note that the changes have been done on the master archive and will not propagate to any mirrors until the next dinstall run at the earliest. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster@ftp-master.debian.org. Debian distribution maintenance software pp. Thorsten Alteholz (the ftpmaster behind the curtain)
--- End Message ---