From b42f8f4ff9a282c61c7f578bea13c84e845675c3 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Fri, 5 Feb 2010 03:23:33 +0000 Subject: Add README.OPL to list of documentation files to distribute. Subversion-branch: /branches/opl-branch Subversion-revision: 1842 --- pkg/config.make.in | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg') diff --git a/pkg/config.make.in b/pkg/config.make.in index d8d72c60..6bda7471 100644 --- a/pkg/config.make.in +++ b/pkg/config.make.in @@ -19,6 +19,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ # Documentation files to distribute with packages. DOC_FILES = README \ + README.OPL \ COPYING \ ChangeLog \ NEWS \ -- cgit v1.2.3 From ff7fff78ec179f401a60b839eb522e08a9f5b5ca Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Fri, 5 Feb 2010 03:27:14 +0000 Subject: Only distribute README.OPL in the Windows package, don't bother including it in the Mac OS X package. Subversion-branch: /branches/opl-branch Subversion-revision: 1843 --- pkg/config.make.in | 1 - pkg/win32/GNUmakefile | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'pkg') diff --git a/pkg/config.make.in b/pkg/config.make.in index 6bda7471..d8d72c60 100644 --- a/pkg/config.make.in +++ b/pkg/config.make.in @@ -19,7 +19,6 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ # Documentation files to distribute with packages. DOC_FILES = README \ - README.OPL \ COPYING \ ChangeLog \ NEWS \ diff --git a/pkg/win32/GNUmakefile b/pkg/win32/GNUmakefile index 626f1845..31968795 100644 --- a/pkg/win32/GNUmakefile +++ b/pkg/win32/GNUmakefile @@ -11,6 +11,8 @@ DLL_FILES=$(TOPLEVEL)/src/SDL.dll \ $(TOPLEVEL)/src/SDL_mixer.dll \ $(TOPLEVEL)/src/SDL_net.dll +DOC_FILES += README.OPL + ZIP=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-win32.zip $(ZIP) : staging -- cgit v1.2.3 From fea1fb2a38f269fb841c4fcb0c0dea70e2bde388 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Wed, 14 Jul 2010 20:36:53 +0000 Subject: Set MACOSX_DEPLOYMENT_TARGET to target 10.4, so that the launcher will work on older versions. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1944 --- pkg/osx/GNUmakefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pkg') diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile index d119efa1..baaec048 100644 --- a/pkg/osx/GNUmakefile +++ b/pkg/osx/GNUmakefile @@ -6,6 +6,10 @@ include ../config.make +# Build so that the package will work on older versions. + +export MACOSX_DEPLOYMENT_TARGET=10.4 + STAGING_DIR=staging DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).dmg -- cgit v1.2.3 From b582e47695c2b3a19c477603a6559eb37df7ed8b Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sat, 28 Aug 2010 18:28:05 +0000 Subject: Include INSTALL file in distribution packages. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1969 --- pkg/config.make.in | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg') diff --git a/pkg/config.make.in b/pkg/config.make.in index d8d72c60..3fe757ff 100644 --- a/pkg/config.make.in +++ b/pkg/config.make.in @@ -21,6 +21,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ DOC_FILES = README \ COPYING \ ChangeLog \ + INSTALL \ NEWS \ BUGS \ CMDLINE \ -- cgit v1.2.3