From af41b21e1de9723ae6563ecf3cc8979da48bc9b2 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Jun 26 2008 22:44:19 +0000 Subject: Resolves: bug 453052 Bug Description: DSGW uses wrong directory for cookies on HP-UX Reviewed by: trivial Fix Description: Use /var/opt/dirsrv/dsgw/run/cookies Platforms tested: HP-UX Flag Day: no Doc impact: no --- diff --git a/configure b/configure index ce54afc..cc12cde 100755 --- a/configure +++ b/configure @@ -21396,6 +21396,8 @@ if test "$with_adminserver" != yes ; then # relative to libdir cgibindir=/$PACKAGE_NAME/dsgw-cgi-bin perldir=/$PACKAGE_NAME/perl + # relative to $localstatedir + cookiedir=/run/$PACKAGE_BASE_NAME/dsgw/cookies elif test "$with_fhs_opt" = "yes"; then # relative to datadir htmldir=/dsgw/html @@ -21414,6 +21416,8 @@ elif test "$with_fhs_opt" = "yes"; then perldir=/perl # same as server's cgibindir cgibindir=/dsgw-cgi-bin + # relative to $localstatedir + cookiedir=/$PACKAGE_BASE_NAME/dsgw/run/cookies else # relative to datadir htmldir=/$PACKAGE_BASE_NAME/dsgw/html @@ -21432,13 +21436,13 @@ else perldir=/$PACKAGE_BASE_NAME/perl # CGI program directory cgibindir=/$PACKAGE_BASE_NAME/dsgw-cgi-bin + # relative to $localstatedir + cookiedir=/run/$PACKAGE_BASE_NAME/dsgw/cookies fi # relative to instconfigdir contextdir=/dsgw securitydir=/dsgw -# relative to $localstatedir -cookiedir=/run/$PACKAGE_BASE_NAME/dsgw/cookies # URIs cgiuri=/dsgwcmd dsgwuri=/dsgw diff --git a/configure.ac b/configure.ac index a158fd9..50950b4 100644 --- a/configure.ac +++ b/configure.ac @@ -247,6 +247,8 @@ if test "$with_adminserver" != yes ; then # relative to libdir cgibindir=/$PACKAGE_NAME/dsgw-cgi-bin perldir=/$PACKAGE_NAME/perl + # relative to $localstatedir + cookiedir=/run/$PACKAGE_BASE_NAME/dsgw/cookies elif test "$with_fhs_opt" = "yes"; then # relative to datadir htmldir=/dsgw/html @@ -265,6 +267,8 @@ elif test "$with_fhs_opt" = "yes"; then perldir=/perl # same as server's cgibindir cgibindir=/dsgw-cgi-bin + # relative to $localstatedir + cookiedir=/$PACKAGE_BASE_NAME/dsgw/run/cookies else # relative to datadir htmldir=/$PACKAGE_BASE_NAME/dsgw/html @@ -283,13 +287,13 @@ else perldir=/$PACKAGE_BASE_NAME/perl # CGI program directory cgibindir=/$PACKAGE_BASE_NAME/dsgw-cgi-bin + # relative to $localstatedir + cookiedir=/run/$PACKAGE_BASE_NAME/dsgw/cookies fi # relative to instconfigdir contextdir=/dsgw securitydir=/dsgw -# relative to $localstatedir -cookiedir=/run/$PACKAGE_BASE_NAME/dsgw/cookies # URIs cgiuri=/dsgwcmd dsgwuri=/dsgw