mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e7b32897b3
r=glandium. Bug 849085: Port NSPR's build/autoconf/acwinpaths.m4 to autoconf 2.56+. r=bsmedberg.
14 lines
605 B
Plaintext
14 lines
605 B
Plaintext
dnl This Source Code Form is subject to the terms of the Mozilla Public
|
|
dnl License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
dnl file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
dnl Work around the problem that a DOS-style absolute path is split by
|
|
dnl the colon in autoconf 2.59 and earlier. The _AC_OUTPUT_FILES macro
|
|
dnl was removed and the problem was fixed in autoconf 2.60.
|
|
define(GENERATE_FILES_NOSPLIT, [
|
|
define([_AC_OUTPUT_FILES],
|
|
[patsubst($@, [`IFS=:], [`#IFS=:])])
|
|
])
|
|
m4_ifdef([_AC_OUTPUT_FILES],
|
|
[GENERATE_FILES_NOSPLIT(defn([_AC_OUTPUT_FILES]))])
|