629fa18c92
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/mingw-filesystem#b733b32514d698cd44765eb7c4aa950f1ee391ff
46 lines
1.8 KiB
Bash
Executable File
46 lines
1.8 KiB
Bash
Executable File
#!/bin/sh -
|
|
|
|
# mingw-scripts
|
|
# Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones.
|
|
# Copyright (C) 2008 Levente Farkas
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
# any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
# 02111-1307, USA.
|
|
|
|
# This is a useful command-line script through which one can use the
|
|
# macros from /etc/rpm/macros.cross, macros.mingw32 and macros.mingw64
|
|
|
|
if [ "`basename $0`" = "i686-w64-mingw32-pkg-config" ] ; then
|
|
NAME="mingw32_pkg_config"
|
|
elif [ "`basename $0`" = "x86_64-w64-mingw32-pkg-config" ] ; then
|
|
NAME="mingw64_pkg_config"
|
|
else
|
|
NAME="`basename $0|tr -- - _`"
|
|
fi
|
|
|
|
# When using the CMake wrappers, prevent CFLAGS and CXXFLAGS from being set
|
|
# unless they're already set in the current environment (RHBZ #1136069)
|
|
if [[ $NAME == *cmake* ]] ; then
|
|
MINGW32_CFLAGS=${MINGW32_CFLAGS:-""}
|
|
MINGW32_CXXFLAGS=${MINGW32_CXXFLAGS:-""}
|
|
MINGW64_CFLAGS=${MINGW64_CFLAGS:-""}
|
|
MINGW64_CXXFLAGS=${MINGW64_CXXFLAGS:-""}
|
|
fi
|
|
|
|
# NOTE: The use of 'eval' in combination with '$@' is a potential security risk
|
|
# We should find a more safe replacement for this command
|
|
# Suggestions are welcome at the Fedora MinGW mailing list
|
|
eval "MINGW_CMAKE_NO_VERBOSE=1 `rpm --eval "%{$NAME}"`" '"$@"'
|