mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
bad8d0a212
- Fix dependencies - Respect C{C,XX} and C[XX]FLAGS - Fix spelling typo in pkg-descr, kill dots/space at EOLs - Utilize DATADIR in pkg-plist - Take maintainership
15 lines
279 B
C++
15 lines
279 B
C++
--- src/automake.h.orig Sat Dec 16 13:07:24 2000
|
|
+++ src/automake.h Thu Apr 7 20:00:08 2005
|
|
@@ -65,6 +65,11 @@
|
|
{
|
|
return target.name != str;
|
|
};
|
|
+
|
|
+ friend bool operator==(const Target &target,const string &str)
|
|
+ {
|
|
+ return target.name == str;
|
|
+ };
|
|
};
|
|
|
|
class Makefile
|