pidgin/pidgin

Stop removing -Wall from CFLAGS
release-2.x.y
4 months ago, Elliott Sales de Andrade
e1d146d0b604
Stop removing -Wall from CFLAGS

We really shouldn't override what the user has set externally. While it's true
that `-Wall` is set in `DEBUG_CFLAGS` later, dropping it from `CFLAGS` breaks
Perl detection somehow. Instead of going through the work to figure out how to
fix that, just stop modifying `CFLAGS` from the beginning.

Testing Done:
Compiled on Rawhide with the attached patch.

Bugs closed: PIDGIN-16593

Reviewed at https://reviews.imfreedom.org/r/2946/
/** @page plugin-signals Plugin Signals
@signals
@signal plugin-load
@signal plugin-unload
@endsignals
@see plugin.h
<hr>
@signaldef plugin-load
@signalproto
void (*plugin_load)(PurplePlugin *plugin);
@endsignalproto
@signaldesc
Emitted when a plugin is loaded.
@param plugin The plugin that was loaded.
@endsignaldef
@signaldef plugin-unload
@signalproto
void (*plugin_unload)(PurplePlugin *plugin);
@endsignalproto
@signaldesc
Emitted when a plugin is unloaded.
@param plugin The plugin that was unloaded.
@endsignaldef
*/
// vim: syntax=c.doxygen tw=75 et