-Changes to squid-3.1.0.6 (01 Mar 2009):
+Changes to squid-3.1.0.6 (02 Mar 2009):
- Regresion Fix: Support HTTP/0.9 in accelerator mode
+ - Regression bug 2608: Build broken by Linux basename() implementation.
- Bug 2601: Hack. Convert IPv4 netmasks to CIDR in IPv6-enabled mode
- Bug 2593: Compile errors on Solaris 10
- Bug 2591: adaptation_access does not work
#ifndef SQUID_DEBUG_H
#define SQUID_DEBUG_H
-/* NP: done without pre-requisite config.h */
-/* because we only define with it here. */
-#if HAVE_LIBGEN_H
-#include <libgen.h>
-#endif
-
#include <iostream>
#undef assert
#include <sstream>
*
* debugs(1,2, HERE << "some message");
*/
-#define HERE basename(__FILE__)<<"("<<__LINE__<<") "<<__FUNCTION__<<": "
+#define HERE __FILE__<<"("<<__LINE__<<") "<<__FUNCTION__<<": "
/*
* MYNAME is for use at debug levels 0 and 1 where HERE is too messy.