Commit c048c78d authored by Rocky Bernstein's avatar Rocky Bernstein

In Solaris (and perhaps others) PATH_MAX is in limits.h.

parent 57e0c551
......@@ -2,7 +2,7 @@
* drms.c: DRMS
*****************************************************************************
* Copyright (C) 2004 VideoLAN
* $Id: drms.c,v 1.6 2004/01/18 01:21:33 sam Exp $
* $Id: drms.c,v 1.7 2004/01/18 04:45:32 rocky Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Sam Hocevar <sam@zoy.org>
......@@ -49,6 +49,11 @@
#include <sys/types.h>
#endif
/* In Solaris (and perhaps others) PATH_MAX is in limits.h. */
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#include "drms.h"
#include "drmstables.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment