mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 11:43:25 +02:00
Fix gnump3d: cookie exp time to 1 year
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
== List of softwares used to build IPFire Version: 2.5beta1 ==
|
== List of softwares used to build IPFire Version: 2.5beta2 ==
|
||||||
* Archive-Tar-1.29
|
* Archive-Tar-1.29
|
||||||
* Archive-Zip-1.16
|
* Archive-Zip-1.16
|
||||||
* BerkeleyDB-0.27
|
* BerkeleyDB-0.27
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
|||||||
@$(PREBUILD)
|
@$(PREBUILD)
|
||||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-remove_badbannerlink.patch
|
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-remove_badbannerlink.patch
|
||||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-remove_cookie_expiration_date.patch
|
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-cookie_expiration.patch
|
||||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-fix_random_dir_for_opera.patch
|
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-fix_random_dir_for_opera.patch
|
||||||
# gnump3d.org is not related with gnump3d anymore
|
# gnump3d.org is not related with gnump3d anymore
|
||||||
# change the links to project page on gnu.org
|
# change the links to project page on gnu.org
|
||||||
@@ -90,6 +90,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
|||||||
echo Folder for music files > /var/mp3/info
|
echo Folder for music files > /var/mp3/info
|
||||||
chown nobody.nobody /var/mp3
|
chown nobody.nobody /var/mp3
|
||||||
install -m 644 $(DIR_SRC)/config/gnump3d/gnump3d.conf /etc/gnump3d/
|
install -m 644 $(DIR_SRC)/config/gnump3d/gnump3d.conf /etc/gnump3d/
|
||||||
ln -s /usr/bin/gnump3d-index /etc/fcron.daily/gnump3d-index
|
ln -sf /usr/bin/gnump3d-index /etc/fcron.daily/gnump3d-index
|
||||||
@rm -rf $(DIR_APP)
|
@rm -rf $(DIR_APP)
|
||||||
@$(POSTBUILD)
|
@$(POSTBUILD)
|
||||||
|
|||||||
@@ -1,12 +1,14 @@
|
|||||||
diff -Naur gnump3d-3.0.org/bin/gnump3d2 gnump3d-3.0/bin/gnump3d2
|
diff -Naur gnump3d-3.0.org/bin/gnump3d2 gnump3d-3.0/bin/gnump3d2
|
||||||
--- gnump3d-3.0.org/bin/gnump3d2 2007-10-18 19:34:02.000000000 +0200
|
--- gnump3d-3.0.org/bin/gnump3d2 2007-10-18 19:34:02.000000000 +0200
|
||||||
+++ gnump3d-3.0/bin/gnump3d2 2009-05-02 15:17:51.000000000 +0200
|
+++ gnump3d-3.0/bin/gnump3d2 2009-05-03 11:46:09.000000000 +0200
|
||||||
@@ -1346,7 +1346,7 @@
|
@@ -1345,8 +1345,8 @@
|
||||||
|
next if $key eq 'q' or $key eq 'play';
|
||||||
|
|
||||||
my $val = $ARGUMENTS{ $key };
|
my $val = $ARGUMENTS{ $key };
|
||||||
|
-
|
||||||
- $header .= "Set-Cookie: " . $key . "=" . $val . ";path=/; expires=Mon, 10-Mar-08 14:36:42 GMT;\r\n";
|
- $header .= "Set-Cookie: " . $key . "=" . $val . ";path=/; expires=Mon, 10-Mar-08 14:36:42 GMT;\r\n";
|
||||||
+ $header .= "Set-Cookie: " . $key . "=" . $val . ";path=/; \r\n";
|
+ my $exptime=gmtime(time()+365*24*3600) . " GMT" ;
|
||||||
|
+ $header .= "Set-Cookie: " . $key . "=" . $val . ";path=/; expires=" . $exptime . ";\r\n";
|
||||||
}
|
}
|
||||||
print "Header: $header\n";
|
print "Header: $header\n";
|
||||||
|
|
||||||
Reference in New Issue
Block a user