]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix build error on Irix.
authorGuido Serassio <serassio@squid-cache.org>
Sun, 13 Apr 2008 17:01:15 +0000 (19:01 +0200)
committerGuido Serassio <serassio@squid-cache.org>
Sun, 13 Apr 2008 17:01:15 +0000 (19:01 +0200)
On Irix the inclusion of sstream defines assert(), so the build fails for
a redefinition error.
Just include Debug.h as last to fix the problem.

src/debug.cc [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 675f081..cbd9add
@@ -35,9 +35,9 @@
 #include "squid.h"
 #endif
 
-#include "Debug.h"
 #include "SquidTime.h"
 #include <sstream>
+#include "Debug.h"
 
 /* for Config */
 #include "structs.h"