54 lines
2.1 KiB
Bash
54 lines
2.1 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2012 Ryan Houlgate <rhoulgate@member.fsf.org>
|
|
#
|
|
# 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 of the License, 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
#
|
|
|
|
VERSION=1
|
|
|
|
. ./config
|
|
|
|
|
|
# Need to remove an 'option' in the XML file.
|
|
# It extends for five lines, so we will comment
|
|
# them out.
|
|
|
|
sed -i '/fglrx_xgl_fix"/,/option/d' plugins/workarounds/workarounds.xml.in
|
|
|
|
# The C++ code calls methods that appear to be based
|
|
# on the part of the XML file that we removed.
|
|
# There is a method that returns a boolean to
|
|
# indicate whether or not this feature should
|
|
# be exhibited. I've created a dummy method
|
|
# that always returns false for that.
|
|
# It's declared as "extern" in the "*.h" file.
|
|
# It's defined at the end of the "*.cpp" file.
|
|
# There is another call to a related method.
|
|
# I just comment out that call.
|
|
|
|
sed -i '/optionSetFglrxXglFixNotify/,/_1/ s:^://:' plugins/workarounds/src/workarounds.cpp
|
|
|
|
# Create declaration of method in the *.h file
|
|
echo "extern bool optionGetFglrxXglFix();" >> plugins/workarounds/src/workarounds.h
|
|
|
|
# Create definition of method in the *.cpp file
|
|
echo "// Providing dummy method to always return false due to the removal" >> plugins/workarounds/src/workarounds.cpp
|
|
echo "// of non-free software recommendation" >> plugins/workarounds/src/workarounds.cpp
|
|
echo "bool optionGetFglrxXglFix() { return false; }" >> plugins/workarounds/src/workarounds.cpp
|
|
|
|
changelog "Remove recomendation to use fglrx (non-free software)"
|
|
|
|
compile
|