sas             Fri Jun 27 03:43:42 2003 EDT

  Modified files:              
    /php-src/main       php.h 
  Log:
  undefine macros before defining them
  
Index: php-src/main/php.h
diff -u php-src/main/php.h:1.189 php-src/main/php.h:1.190
--- php-src/main/php.h:1.189    Tue Jun 10 16:03:41 2003
+++ php-src/main/php.h  Fri Jun 27 03:43:42 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php.h,v 1.189 2003/06/10 20:03:41 imajes Exp $ */
+/* $Id: php.h,v 1.190 2003/06/27 07:43:42 sas Exp $ */
 
 #ifndef PHP_H
 #define PHP_H
@@ -123,11 +123,13 @@
 
 #ifndef HAVE_STRLCPY
 PHPAPI size_t php_strlcpy(char *dst, const char *src, size_t siz);
+#undef strlcpy
 #define strlcpy php_strlcpy
 #endif
 
 #ifndef HAVE_STRLCAT
 PHPAPI size_t php_strlcat(char *dst, const char *src, size_t siz);
+#undef strlcat
 #define strlcat php_strlcat
 #endif
 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to